home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 7 Apr 2025 16:23:15 +0000 (18:23 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 7 Apr 2025 16:23:15 +0000 (18:23 +0200)
testing/scripts/lib/retry_until

index 0edf07584a704cadeb3b7712db98e49b20f932bd..8f686dd8885242f22e0b89958548b008b215e21c 100644 (file)
@@ -12,7 +12,7 @@ retry_until() {
         set -e
         if [ "${_RESULT}" = '0' ]; then
             break
-        elif [ "${RESULT}" != "${_CODE_FOR_CONTINUE} ]; then
+        elif [ "${RESULT}" != "${_CODE_FOR_CONTINUE}" ]; then
             eval "${_ON_FAIL}"
             abort
         fi