From f4870c66fa588000ca133107ed1488e4879c884c Mon Sep 17 00:00:00 2001 From: timvisee Date: Wed, 25 Jan 2023 20:45:45 +0100 Subject: [PATCH] Fix scoop installation on Windows in GitLab CI --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a0c8242..f076cb9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,7 @@ before_script: .before_script-windows: &before_script-windows before_script: # Install scoop - - Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') + - iex "& {$(irm get.scoop.sh)} -RunAsAdmin" # Install Rust - scoop install rustup gcc