From 30625e1d44653dc6a69550f5bddcf57cf61747d0 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 7 Apr 2025 18:30:02 +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 8f686dd..2d0297d 100644 --- a/testing/scripts/lib/retry_until +++ b/testing/scripts/lib/retry_until @@ -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 -- 2.30.2