vcpkgInvokeCommand(): Add -NoNewWindows flag

This commit is contained in:
Alexander Karatarakis 2018-01-19 15:19:40 -08:00
parent ae582e0d4f
commit 62c8626f4d

View File

@ -171,7 +171,7 @@ function vcpkgInvokeCommand()
[switch]$wait)
Write-Verbose "Executing: ${executable} ${arguments}"
$process = Start-Process -FilePath $executable -ArgumentList $arguments -PassThru
$process = Start-Process -FilePath $executable -ArgumentList $arguments -PassThru -NoNewWindow
if ($wait)
{
Wait-Process -InputObject $process