From e9271a5c0f6efab2825f3b8cd2a7c4ff2c941f6c Mon Sep 17 00:00:00 2001 From: Michael Woolweaver Date: Thu, 6 Nov 2025 10:05:24 -0600 Subject: [PATCH] check for `= false` explicitly instead of `!= true` Signed-off-by: Michael Woolweaver --- padd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/padd.sh b/padd.sh index 21e3c4c3..00f66d5d 100755 --- a/padd.sh +++ b/padd.sh @@ -237,7 +237,7 @@ LoginAPI() { Authenticate # Try to login again until the session is valid - while [ "${validSession}" != true ] ; do + while [ "${validSession}" = false ] ; do moveXOffset; echo "Authentication failed." # Print the error message if there is one @@ -1528,7 +1528,7 @@ check_dependencies() { hasDeps=false fi - if [ "${hasDeps}" != true ]; then + if [ "${hasDeps}" = false ]; then printf "%b" "\n Please install the missing dependencies noted above.\n" exit 1 fi