mirror of https://github.com/stenzek/duckstation
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.
14 lines
189 B
Bash
14 lines
189 B
Bash
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
RETRIES=10
|
||
|
|
||
|
for i in $(seq 1 "$RETRIES"); do
|
||
|
"$@" && break
|
||
|
if [ "$i" == "$RETRIES" ]; then
|
||
|
echo "Command \"$@\" failed after ${RETRIES} retries."
|
||
|
exit 1
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
exit 0
|