diff options
| author | bors <bors@rust-lang.org> | 2017-05-16 01:01:31 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-05-16 01:01:31 +0000 |
| commit | ae33d99bcd1c1f99b4605d2bb1150c590ffa3044 (patch) | |
| tree | b385db21bf90ddcc3830a212e0222dae83bd93c5 | |
| parent | abe11831358f2c37a11ffddd679dd3e0a67827c8 (diff) | |
| parent | 7644508b4e1216731d11378d2dd487eba20217f8 (diff) | |
| download | rust-ae33d99bcd1c1f99b4605d2bb1150c590ffa3044.tar.gz rust-ae33d99bcd1c1f99b4605d2bb1150c590ffa3044.zip | |
Auto merge of #41996 - alexcrichton:more-retry, r=Mark-Simulacrum
appveyor: Wrap handle.exe download in a retry Should help deal with spurious download failures.
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 42c6256a95a..96de1d90f25 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -141,9 +141,9 @@ install: - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH% # Help debug some handle issues on AppVeyor - - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip + - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-15-Handle.zip - mkdir handle - - ps: Expand-Archive handle.zip -dest handle + - 7z x -ohandle 2017-05-15-Handle.zip - set PATH=%PATH%;%CD%\handle - handle.exe -accepteula -help |
