Change 'until' style (#3366)

This commit is contained in:
Casper 2023-05-26 07:42:03 +02:00 committed by GitHub
parent c2d0b748b2
commit 8512dba8ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 10 deletions

View file

@ -37,8 +37,7 @@ function repeat_until_success_or_timeout {
local STARTTIME=${SECONDS}
shift 1
until "${@}"
do
until "${@}"; do
if [[ -n ${FATAL_FAILURE_TEST_COMMAND} ]] && ! eval "${FATAL_FAILURE_TEST_COMMAND}"; then
echo "\`${FATAL_FAILURE_TEST_COMMAND}\` failed, early aborting repeat_until_success of \`${*}\`" >&2
return 1
@ -66,8 +65,7 @@ function run_until_success_or_timeout {
local STARTTIME=${SECONDS}
shift 1
until run "${@}" && [[ $status -eq 0 ]]
do
until run "${@}" && [[ $status -eq 0 ]]; do
sleep 1
if (( SECONDS - STARTTIME > TIMEOUT )); then