boost/libs/beast/tools/retry.sh
2022-12-15 23:45:23 +08:00

10 lines
113 B
Bash
Executable File

#!/usr/bin/env bash
for i in {1..3}
do
$1 "${@:2:99}" && exit 0;
export BEAST_RETRY="true"
done
exit 1