From 05c09fd487a383f44717b4f21307785c809ee04f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 14:12:23 +0000 Subject: Optimize variable name in user_install_script.sh from plugin_installer to decky_client Co-authored-by: tranch <5999732+tranch@users.noreply.github.com> --- user_install_script.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user_install_script.sh b/user_install_script.sh index 5fd1e84..7fa320a 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -34,13 +34,13 @@ if [ "$SKIP_DECKY_INSTALL" != true ]; then bash "${tmp_script}" fi -# Download and run decky plugin installer helper (mirror-hosted). -plugin_installer="/tmp/decky_client.py" -if curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/decky-installer/releases/latest/download/decky_client.py" -o "${plugin_installer}"; then - python3 "${plugin_installer}" install \ +# Download and run Decky Loader client (mirror-hosted). +decky_client="/tmp/decky_client.py" +if curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/decky-installer/releases/latest/download/decky_client.py" -o "${decky_client}"; then + python3 "${decky_client}" install \ --store-url "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" \ --target-id "${DECKY_PLUGIN_TARGET_ID}" else - echo "Failed to download decky installer helper script." >&2 + echo "Failed to download Decky Loader client script." >&2 exit 1 fi -- cgit v1.2.3