]> git.lizzy.rs Git - rust.git/commitdiff
Minor tweaks to retry utility
authorAidan Hobson Sayers <aidanhs@cantab.net>
Wed, 29 Mar 2017 09:47:43 +0000 (10:47 +0100)
committerAidan Hobson Sayers <aidanhs@cantab.net>
Wed, 29 Mar 2017 09:47:43 +0000 (10:47 +0100)
src/ci/shared.sh

index ecd9b7e98a4823b0e13a9da3b1de6e2acf49b726..f2e13fc73ae4778930fcd635a8c85f21a9e91d7a 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/false
 # Copyright 2016 The Rust Project Developers. See the COPYRIGHT
 # file at the top-level directory of this distribution and at
 # http://rust-lang.org/COPYRIGHT.
@@ -9,13 +9,16 @@
 # option. This file may not be copied, modified, or distributed
 # except according to those terms.
 
+# This file is intended to be sourced with `. shared.sh` or
+# `source shared.sh`, hence the invalid shebang and not being
+# marked as an executable file in git.
+
 # See http://unix.stackexchange.com/questions/82598
 function retry {
+  echo "Attempting with retry:" "$@"
   local n=1
   local max=5
-  local delay=15
   while true; do
-    echo "Attempting:" "$@"
     "$@" && break || {
       if [[ $n -lt $max ]]; then
         ((n++))