mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
18 lines
416 B
PowerShell
18 lines
416 B
PowerShell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
|
|
|
$rust_version = '1.73.0'
|
|
$rustup_url = 'https://win.rustup.rs/x86_64'
|
|
|
|
Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to download rustup"
|
|
Exit 1
|
|
}
|
|
|
|
C:\rustup-init.exe -y --profile minimal --default-toolchain $rust_version
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to install rust"
|
|
Exit 1
|
|
}
|