Skip to content

Commit

Permalink
Fix printing
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgodbe committed Oct 26, 2018
1 parent 66cef15 commit b5d131c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CloneStuff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ until [ $exit_code -eq 0 ] || [ $__retryCount -ge $__retries ]; do
eval $__command
exit_code=$?
__retryCount=$((__retryCount+1))
echo "Failed to execute command, retrying"
if [ $exit_code -ne 0 ]; then
echo "Failed to execute command, retrying"
fi
done

exit $exit_code

0 comments on commit b5d131c

Please sign in to comment.