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

index 8f686dd8885242f22e0b89958548b008b215e21c..2d0297d65294aabcb7b30732618ea50613c1ae98 100644 (file)
@@ -7,7 +7,7 @@ retry_until() {
     while true; do
         eval "${_ON_LOOP_START}"
         set +e
-        _OUTPUT="$(eval ${_TO_TEST}
+        _OUTPUT="$(eval ${_TO_TEST})"
         _RESULT=$?
         set -e
         if [ "${_RESULT}" = '0' ]; then