fix: orbis postbuild on runner (i beg of you)

This commit is contained in:
2026-08-02 16:45:38 -04:00
parent 14ceff64d9
commit b7e90137b9
@@ -127,7 +127,12 @@ if (-not (Test-Path $genGp4)) {
Write-Host "Orbis Postbuild: '$pkgSrc' not found, skipping PKG creation."
} else {
Write-Host "Orbis Postbuild: Generating GP4..."
& $genGp4 $pkgSrc
$proc = Start-Process -FilePath $genGp4 -ArgumentList $pkgSrc `
-NoNewWindow -Wait -PassThru
if ($proc.ExitCode -ne 0) {
Write-Host "Orbis Postbuild ERROR: gengp4_app.exe failed with exit code $($proc.ExitCode)"
return
}
if (-not (Test-Path $gp4File)) {
Write-Host "Orbis Postbuild ERROR: $gp4File was not created"