
Powershell scripts cannot be launched as commands on Windows. They must be run through the `powershell` or `pwsh` tool.
5 lines
192 B
PowerShell
5 lines
192 B
PowerShell
Invoke-Expression -Command .gitlab/ci/jom.ps1
|
|
$pwdpath = $pwd.Path
|
|
Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\jom;$env:PATH"
|
|
Invoke-Expression -Command .gitlab/ci/vcvarsall.ps1
|