summaryrefslogtreecommitdiff
path: root/tool/travis_retry.sh
blob: 9b79c5655010be5119a6ea7771ac624dc7810cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -eu
# The modified version of `travis_retry` to support custom backoffs, which is used by .travis.yml.
# https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/bash/travis_retry.bash

for sleep in 0 ${WAITS:- 1 25 100}; do
  sleep "$sleep"

  echo "+ $@"
  if "$@"; then
    exit 0
  fi
done
exit 1