mirror of
https://github.com/boostorg/beast.git
synced 2025-06-25 03:51:36 +02:00
10 lines
113 B
Bash
Executable File
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
|