diff options
Diffstat (limited to 'ci/run.ps1')
-rw-r--r-- | ci/run.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ if ($LastExitCode -ne 0) { exit 0 } -# remove Chocolately, MinGW, Strawberry Perl from path, so we don't find gcc/gfortran and try to use it +# remove Chocolatey, MinGW, Strawberry Perl from path, so we don't find gcc/gfortran and try to use it # remove PostgreSQL from path so we don't pickup a broken zlib from it $env:Path = ($env:Path.Split(';') | Where-Object { $_ -notmatch 'mingw|Strawberry|Chocolatey|PostgreSQL' }) -join ';' @@ -76,7 +76,7 @@ foreach ($prog in $progs) { echo "" -echo "Ninja / MSBuld version:" +echo "Ninja / MSBuild version:" if ($env:backend -eq 'ninja') { ninja --version } else { |