
Powershell scripts cannot be launched as commands on Windows. They must be run through the `powershell` or `pwsh` tool.
6 lines
224 B
PowerShell
6 lines
224 B
PowerShell
$pwdpath = $pwd.Path
|
|
& "$pwsh" -File ".gitlab/ci/mingw.ps1"
|
|
Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\mingw\bin;$pwdpath\.gitlab\mingw\msys\1.0\bin;$env:PATH"
|
|
$env:MSYSTEM = 'MINGW32'
|
|
$env:MAKE_MODE = 'unix'
|