From a0376dbbe409a3d71405e9c8c60f31ee5d8cd341 Mon Sep 17 00:00:00 2001 From: Tranch Date: Thu, 12 Feb 2026 11:49:50 +0800 Subject: fix: update decky client download repository path Point the Decky Loader client download URLs to the accelerator-installer repository. Co-authored-by: llm-git --- user_install_script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_install_script.sh b/user_install_script.sh index fac2146..31a24f0 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -51,13 +51,13 @@ decky_client="/tmp/decky_client.py" decky_client_checksum="/tmp/decky_client.py.sha256" # Download the client script -if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/decky-installer/releases/latest/download/decky_client.py" -o "${decky_client}"; then +if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/accelerator-installer/releases/latest/download/decky_client.py" -o "${decky_client}"; then echo "Failed to download Decky Loader client script." >&2 exit 1 fi # Download the checksum file -if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/decky-installer/releases/latest/download/decky_client.py.sha256" -o "${decky_client_checksum}"; then +if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/accelerator-installer/releases/latest/download/decky_client.py.sha256" -o "${decky_client_checksum}"; then echo "Failed to download checksum file for Decky Loader client." >&2 exit 1 fi -- cgit v1.2.3