
Powershell scripts cannot be launched as commands on Windows. They must be run through the `powershell` or `pwsh` tool.
5 lines
228 B
PowerShell
5 lines
228 B
PowerShell
$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().MainModule.FileName
|
|
if (Test-Path -Path ".gitlab/ci/post_build_$env:CMAKE_CONFIGURATION.ps1" -PathType Leaf) {
|
|
. ".gitlab/ci/post_build_$env:CMAKE_CONFIGURATION.ps1"
|
|
}
|