summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rwxr-xr-xtool/ci_retry.sh (renamed from tool/travis_retry.sh)2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/travis_retry.sh b/tool/ci_retry.sh
index 9b79c56550..4eb378ad1a 100755
--- a/tool/travis_retry.sh
+++ b/tool/ci_retry.sh
@@ -1,6 +1,8 @@
#!/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
+#
+# Now this is also used by .github/workflow/*.yml.
for sleep in 0 ${WAITS:- 1 25 100}; do
sleep "$sleep"