summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/beast/tools/retry.sh
blob: 13b30e8e18a19478870469b5fa773d25988496fe (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

for i in {1..3}
do
    $1 "${@:2:99}" && exit 0;
    export BEAST_RETRY="true"
done

exit 1