Blame view

3rdparty/boost_1_81_0/libs/beast/tools/retry.sh 113 Bytes
e6ccf0ce   Hu Chunming   提交三方库
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