diff options
| author | Gabriel Jones <ggppjj@gmail.com> | 2023-05-30 20:15:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-30 20:15:35 -0400 |
| commit | 4669b2818b35e47456bc5df628e8c9e5dd5bbe2b (patch) | |
| tree | 65a562a0d888030d79022354239475604d38c30b | |
| parent | 996722ca7d3df70691dc6f6464a8e51d71715cf4 (diff) | |
| download | decky-installer-4669b2818b35e47456bc5df628e8c9e5dd5bbe2b.tar.gz decky-installer-4669b2818b35e47456bc5df628e8c9e5dd5bbe2b.zip | |
Update user_install_script.sh
Fix missing "latest" verbiage, fixing updates.
| -rw-r--r-- | gui/user_install_script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/user_install_script.sh b/gui/user_install_script.sh index 5441984..316ad20 100644 --- a/gui/user_install_script.sh +++ b/gui/user_install_script.sh @@ -121,10 +121,10 @@ fi # otherwise install decky loader -if [[ "$OPTION" == "release" || "$OPTION" == "update to release" ]]; then +if [[ "$OPTION" == "release" || "$OPTION" == "update to latest release" ]]; then BRANCH="release" fi -if [[ "$OPTION" == "prerelease" || "$OPTION" == "update to prerelease" ]]; then +if [[ "$OPTION" == "prerelease" || "$OPTION" == "update to latest prerelease" ]]; then BRANCH="prerelease" fi |
