Skip to content

Commit 7644508

Browse files
committedMay 15, 2017
appveyor: Wrap handle.exe download in a retry
Should help deal with spurious download failures.
1 parent 77f1bec commit 7644508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ install:
141141
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
142142

143143
# Help debug some handle issues on AppVeyor
144-
- ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
144+
- appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-15-Handle.zip
145145
- mkdir handle
146-
- ps: Expand-Archive handle.zip -dest handle
146+
- 7z x -ohandle 2017-05-15-Handle.zip
147147
- set PATH=%PATH%;%CD%\handle
148148
- handle.exe -accepteula -help
149149

0 commit comments

Comments
 (0)
Please sign in to comment.