We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f4a9ad commit 57f098bCopy full SHA for 57f098b
1 file changed
ci/setup.ps1
@@ -4,11 +4,11 @@ function SetupVsToolsPath {
4
Push-Location 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build'
5
6
cmd /c "vcvars64.bat&set" |
7
- ForEach-Object {
8
- if ($_ -match "=") {
9
- $v = $_.split("="); set-item -force -path "ENV:\$($v[0])" -value "$($v[1])"
10
- }
+ ForEach-Object {
+ if ($_ -match "=") {
+ $v = $_.split("="); set-item -force -path "ENV:\$($v[0])" -value "$($v[1])"
11
}
+ }
12
13
Pop-Location
14
@@ -75,6 +75,9 @@ Write-Host "Running setup script..."
75
Write-Host "Current setup build combo is: $curBuildCombo"
76
77
if ($isLinux) {
78
+ # update apt before installing anything
79
+ sudo apt update
80
+
81
# install ninja through apt
82
# sudo apt install -y ninja-build
83
0 commit comments