Skip to content

Commit

Permalink
ci: correct run-with-retry command (aws-amplify#9978)
Browse files Browse the repository at this point in the history
  • Loading branch information
iartemiev authored Jun 10, 2022
1 parent d1356b1 commit e9cb92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ orbs:
n=0
until [ $n -ge $MAX_RETRY ]
do
"$@" && break
<< parameters.command >> && break
n=$[$n+1]
sleep << parameters.sleep >>
done
Expand All @@ -1770,7 +1770,7 @@ orbs:
exit 1
fi
}
retry << parameters.command >>
retry
no_output_timeout: << parameters.no_output_timeout >>

jobs:
Expand Down

0 comments on commit e9cb92c

Please sign in to comment.