diff options
| author | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-04 01:45:05 +0000 |
|---|---|---|
| committer | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-04 01:45:05 +0000 |
| commit | 4a95462d78174d08f14438b32766c2847aaea77f (patch) | |
| tree | 47d2146eb17b351e69125124d9ab085d7843638b /user_install_script.sh | |
| parent | b5d610d8bbdc2ad9c5075fad4e5cdee23f780102 (diff) | |
| download | decky-installer-4a95462d78174d08f14438b32766c2847aaea77f.tar.gz decky-installer-4a95462d78174d08f14438b32766c2847aaea77f.zip | |
Refine boolean comparison for better idiomatic bash
Co-authored-by: tranch <5999732+tranch@users.noreply.github.com>
Diffstat (limited to 'user_install_script.sh')
| -rw-r--r-- | user_install_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_install_script.sh b/user_install_script.sh index 42f8123..c411321 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -20,7 +20,7 @@ fi # This keeps the original installer logic intact while swapping network endpoints. tmp_script="/tmp/decky_user_install_script.sh" -if [ "$SKIP_DECKY_INSTALL" = false ]; then +if [ "$SKIP_DECKY_INSTALL" != true ]; then if ! curl -fsSL "https://${DECKY_MIRROR_HOST}/SteamDeckHomebrew/decky-installer/releases/latest/download/user_install_script.sh" \ | sed -E \ -e "s#github\.com#${DECKY_MIRROR_HOST}#g" \ |
