summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-02-04 14:16:28 +0000
committercopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2026-02-04 14:16:28 +0000
commitb2ed92cb697722774ed0ca6c8c156bf2cc3f74cf (patch)
tree817ddb2b87eeb3328800b86df558e1ec2308d95f
parent05c09fd487a383f44717b4f21307785c809ee04f (diff)
downloaddecky-installer-b2ed92cb697722774ed0ca6c8c156bf2cc3f74cf.tar.gz
decky-installer-b2ed92cb697722774ed0ca6c8c156bf2cc3f74cf.zip
Add store configuration after plugin installation in user_install_script.sh
Co-authored-by: tranch <5999732+tranch@users.noreply.github.com>
-rw-r--r--user_install_script.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/user_install_script.sh b/user_install_script.sh
index 7fa320a..247f0e2 100644
--- a/user_install_script.sh
+++ b/user_install_script.sh
@@ -37,9 +37,13 @@ fi
# 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
+ # 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"
else
echo "Failed to download Decky Loader client script." >&2
exit 1