summaryrefslogtreecommitdiff
path: root/user_install_script.sh
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-02-04 14:12:23 +0000
committercopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-02-04 14:12:23 +0000
commit05c09fd487a383f44717b4f21307785c809ee04f (patch)
tree89046f403dd573438cffab40191c8c31e72b2c8a /user_install_script.sh
parenta1164d396c54c8a7a3d17746b12c6e62816ed344 (diff)
downloaddecky-installer-05c09fd487a383f44717b4f21307785c809ee04f.tar.gz
decky-installer-05c09fd487a383f44717b4f21307785c809ee04f.zip
Optimize variable name in user_install_script.sh from plugin_installer to decky_client
Co-authored-by: tranch <5999732+tranch@users.noreply.github.com>
Diffstat (limited to 'user_install_script.sh')
-rw-r--r--user_install_script.sh10
1 files 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