From 31979144dc2772063518e0ec33084a9615707da0 Mon Sep 17 00:00:00 2001 From: tranch Date: Fri, 26 Jun 2026 12:07:35 +0800 Subject: Fix 404 fetching upstream installer via mirror plain path cgit's plain handler cannot parse inline branch refs in the URL path (e.g. plain/main/gui/...). Removing the ref segment lets cgit default to HEAD, which resolves the upstream decky-installer script correctly. --- user_install_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_install_script.sh b/user_install_script.sh index 04ed0b1..d9a5d9d 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -11,7 +11,7 @@ DECKY_PLUGIN_TARGET_ID="__DECKY_PLUGIN_ID__" # Use the upstream main-branch script so release/prerelease selection stays current. tmp_script="/tmp/decky_user_install_script.sh" -if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/SteamDeckHomebrew/decky-installer/plain/main/gui/user_install_script.sh" \ +if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/SteamDeckHomebrew/decky-installer/plain/gui/user_install_script.sh" \ | sed -E \ -e "s#github\.com#${DECKY_MIRROR_HOST}#g" \ -e "s#api\.github\.com#api.${DECKY_MIRROR_HOST}#g" \ -- cgit v1.2.3