From 3fef48183edd249ed57728e91c9ec1fd1059c7a5 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Sat, 4 Apr 2026 20:11:03 -0700 Subject: [PATCH] fix: Use correct repo for xone nightly updater (#11062) (#11064) --- anda/system/xone/nightly/kmod-common/update.rhai | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/system/xone/nightly/kmod-common/update.rhai b/anda/system/xone/nightly/kmod-common/update.rhai index e46f17f7d2..4f75b47bcd 100644 --- a/anda/system/xone/nightly/kmod-common/update.rhai +++ b/anda/system/xone/nightly/kmod-common/update.rhai @@ -1,8 +1,8 @@ -rpm.global("commit", gh_commit("dlundqvist/xone")); +rpm.global("commit", gh_commit("OpenGamingCollective/xonedo")); if rpm.changed() { rpm.release(); rpm.global("commitdate", date()); - let v = gh("dlundqvist/xone"); + let v = gh("OpenGamingCollective/xonedo"); v.crop(1); rpm.global("ver", v); }