You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DepotDownloader/.ci/exec-with-retry.sh

12 lines
105 B
Bash

#!/bin/bash -x
# Try 10 times
for iter in {1..10}
do
("$@")
if [[ $? -eq 0 ]]
then
exit 0
fi
done