Skip to content

Commit

Permalink
Syntax again
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgodbe committed Oct 26, 2018
1 parent 62e38e9 commit c32eab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CloneStuff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [[ -z "$__command" ]]; then
fi

__retryCount=0
until [[ $exit_code -eq 0 ] || [ $__retryCount -ge $__retries ]]; do
until [ $exit_code -eq 0 ] || [ $__retryCount -ge $__retries ]; do
eval $__command
exit_code=$?
__retryCount=$((__retryCount+1))
Expand Down

0 comments on commit c32eab7

Please sign in to comment.