Merge pull request #635 from mcgoo/fix_cacert_pem_download

use appveyor DownloadFile to download cacert.pem
This commit is contained in:
Steven Fackler 2017-05-12 09:56:06 -07:00 committed by GitHub
commit b01743e207
1 changed files with 1 additions and 1 deletions

View File

@ -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/