From 838c5b220898cff40340358833a7fea50b903160 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 7 Apr 2025 18:23:15 +0200 Subject: [PATCH] Fix. --- testing/scripts/lib/retry_until | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scripts/lib/retry_until b/testing/scripts/lib/retry_until index 0edf075..8f686dd 100644 --- a/testing/scripts/lib/retry_until +++ b/testing/scripts/lib/retry_until @@ -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 -- 2.30.2