From 613e46b0ee0c7a483a3cd99802e6746364ca26fa Mon Sep 17 00:00:00 2001 From: mcgoo Date: Thu, 4 Jan 2018 22:04:16 -0600 Subject: [PATCH] get rustup-init with curl to avoid tls failures --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index f720b046..92d40511 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,7 +5,7 @@ environment: install: # Install rust, x86_64-pc-windows-msvc host - - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe + - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain %APPVEYOR_RUST_CHANNEL% - set PATH=C:\msys64\usr\bin;%PATH%;C:\Users\appveyor\.cargo\bin - rustc -vV