mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
actually don't fail on result
This commit is contained in:
parent
c465698b72
commit
b3d79a777d
1 changed files with 1 additions and 2 deletions
|
|
@ -61,8 +61,7 @@ stages:
|
|||
local count=1
|
||||
while [[ "${count}" -le 3 ]]; do
|
||||
# run the command in a way that doesn't disable setting `errexit`
|
||||
"${@}"
|
||||
result="${?}"
|
||||
"${@}" || result="${?}"
|
||||
if [[ $result -eq 0 ]]; then break; fi
|
||||
count="$((count + 1))"
|
||||
sleep 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue