Actually call RunUAT

This commit is contained in:
Steve Streeting 2020-10-05 17:04:41 +01:00
parent 88936073fa
commit d0bd9780ec

View File

@ -218,9 +218,11 @@ try {
Write-Output "Would have run:" Write-Output "Would have run:"
Write-Output "> $runUAT $($argList -join " ")" Write-Output "> $runUAT $($argList -join " ")"
} else {
$proc = Start-Process $runUAT $argList -Wait -PassThru -NoNewWindow
} else { if ($proc.ExitCode -ne 0) {
throw "RunUAT failed!"
}
} }
} }