Skip to content

Commit

Permalink
CI: fixed sleep syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmorgner committed Aug 11, 2023
1 parent 9821ef1 commit 772a0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/push_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ git commit --message "$1"
i=0
while [ $i -le 10 ] && ! git push --quiet --set-upstream origin "${BRANCH}"
do
sleep $[ ( $RANDOM % 32 ) + 1 ]s
sleep $[ ( $RANDOM % 32 ) + 1 ]
git pull --rebase origin --strategy-option ours "${BRANCH}"
i=$(( $i + 1 ))
done
Expand Down

0 comments on commit 772a0ac

Please sign in to comment.