aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-05-12 09:56:06 -0700
committerGitHub <[email protected]>2017-05-12 09:56:06 -0700
commitb01743e207310ae0c8c3ab8320bb93bf06291084 (patch)
treebb2e429e771802f4f85b5a514e7b22c270c5f4f9
parentDrop x86 macOS build (diff)
parentuse appveyor DownloadFile to download cacert.pem (diff)
downloadrust-openssl-b01743e207310ae0c8c3ab8320bb93bf06291084.tar.xz
rust-openssl-b01743e207310ae0c8c3ab8320bb93bf06291084.zip
Merge pull request #635 from mcgoo/fix_cacert_pem_download
use appveyor DownloadFile to download cacert.pem
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 00d593f9..711435b4 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -24,7 +24,7 @@ install:
# install OpenSSL
- ps: Start-FileDownload "http://slproweb.com/download/Win${env:BITS}OpenSSL-${env:OPENSSL_VERSION}.exe"
- Win%BITS%OpenSSL-%OPENSSL_VERSION%.exe /SILENT /VERYSILENT /SP- /DIR="C:\OpenSSL"
- - ps: Start-FileDownload "https://curl.haxx.se/ca/cacert.pem" -FileName "C:\OpenSSL\cacert.pem"
+ - appveyor DownloadFile https://curl.haxx.se/ca/cacert.pem -FileName C:\OpenSSL\cacert.pem
# Install Rust
- curl -sSf -o rustup-init.exe https://win.rustup.rs/