diff options
| author | Tranch <tranch.xiao@gmail.com> | 2026-02-11 18:42:43 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-11 18:42:43 +0800 |
| commit | b2b3ca6b043e83b5522f818640247189ac752a8e (patch) | |
| tree | fcaa7965b7ddd09309ffa68134cdb8f900aa41ec /user_install_script.sh | |
| parent | d50c14341bd67ea029566440b1eba9d4d1481a9e (diff) | |
| parent | ed5433ad7de353aa266a08683075d8363cfb8632 (diff) | |
| download | accelerator-installer-b2b3ca6b043e83b5522f818640247189ac752a8e.tar.gz accelerator-installer-b2b3ca6b043e83b5522f818640247189ac752a8e.zip | |
Merge pull request #4 from AeroCore-IO/copilot/fix-store-type-configurationv1.0.8
Fix store URL setting key to match Decky Loader official implementation
Diffstat (limited to 'user_install_script.sh')
| -rw-r--r-- | user_install_script.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user_install_script.sh b/user_install_script.sh index 42bdd38..fac2146 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -69,13 +69,13 @@ if ! (cd /tmp && sha256sum -c decky_client.py.sha256); then exit 1 fi +# Configure the custom store URL first to ensure install requests go to the correct store +python3 "${decky_client}" configure-store "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" + # Install the plugin python3 "${decky_client}" install \ --store-url "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" \ --target-id "${DECKY_PLUGIN_TARGET_ID}" -# Configure the custom store URL for future use -python3 "${decky_client}" configure-store "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" - # Clean up rm -f "${decky_client}" "${decky_client_checksum}" |
