This commit is contained in:
daa84 2017-04-21 12:54:52 +03:00
parent 10694aedbc
commit 805061b75d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ environment:
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/channel-rust-stable"
- ps: $env:RUST_VERSION = Get-Content channel-rust-stable | select -first 1 | %{$_.split('-')[1]}
- SET RUST_URL=https://static.rust-lang.org/dist/rust-${env:RUST_VERSION}-${env:TARGET}.exe
- SET RUST_URL=https://static.rust-lang.org/dist/rust-%RUST_VERSION%-%TARGET%.exe
- SET PATH=C:\Rust\bin;C:\msys64\mingw64\bin;%PATH%;C:\msys64\usr\bin
- ps: Start-FileDownload $env:RUST_URL -FileName rust-dist.exe
- rust-dist.exe /VERYSILENT /NORESTART /COMPONENTS="Rustc,Gcc,Cargo,Std" /DIR="C:\Rust"