mirror of https://github.com/PCSX2/pcsx2.git
14 lines
189 B
Bash
14 lines
189 B
Bash
|
#!/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
|