Fix scoop installation on Windows in GitLab CI

This commit is contained in:
timvisee 2023-01-25 20:45:45 +01:00
parent c415420eae
commit f4870c66fa
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172

View File

@ -32,7 +32,7 @@ before_script:
.before_script-windows: &before_script-windows .before_script-windows: &before_script-windows
before_script: before_script:
# Install scoop # Install scoop
- Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') - iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
# Install Rust # Install Rust
- scoop install rustup gcc - scoop install rustup gcc