From 4a95462d78174d08f14438b32766c2847aaea77f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 01:45:05 +0000 Subject: Refine boolean comparison for better idiomatic bash Co-authored-by: tranch <5999732+tranch@users.noreply.github.com> --- user_install_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" \ -- cgit v1.2.3