Skip to content

Commit 6954bd5

Browse files
author
Oleg Sucharevich
committed
Dont print the command when during retry
1 parent d4c3982 commit 6954bd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ git_retry () {
2020
if [[ $EXIT_CODE == 0 ]]; then
2121
break
2222
elif [[ $EXIT_CODE == "$RETRY_ON_SIGNAL" ]]; then
23-
echo "$COMMAND failed with Exit Code $EXIT_CODE - try $TRY_NUM "
23+
echo "Failed with Exit Code $EXIT_CODE - try $TRY_NUM "
2424
TRY_NUM=$(( ${TRY_NUM} + 1 ))
2525
sleep $RETRY_WAIT
2626
else

0 commit comments

Comments
 (0)