From ae7298f060e5e83fcc2c927eab64bfa722dcb8ff Mon Sep 17 00:00:00 2001 From: Roelf Wichertjes Date: Thu, 24 Mar 2022 17:07:46 +0100 Subject: [PATCH] Fix inverted condition. --- uploader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uploader.sh b/uploader.sh index 30879ec..0beaa6d 100755 --- a/uploader.sh +++ b/uploader.sh @@ -16,7 +16,7 @@ do lock_rc="${?}" set -e if [ "$lock_rc" -ne 0 ]; then - if [ "$lock_rc" -ne 234 ]; then + if [ "$lock_rc" -eq 234 ]; then echo "Could not claim pack!" else echo "Error return: ${lock_rc}."