aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-01-19 15:19:40 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2018-01-23 14:16:06 -0800
commit62c8626f4d28344c3cc4b488ffeac51bddb8bbcd (patch)
treea929b5b5b6a12e5800479fdbca3a41b7ed187a02 /scripts
parentae582e0d4f05c210b82046b1a5cb63f395242219 (diff)
downloadvcpkg-62c8626f4d28344c3cc4b488ffeac51bddb8bbcd.tar.gz
vcpkg-62c8626f4d28344c3cc4b488ffeac51bddb8bbcd.zip
vcpkgInvokeCommand(): Add -NoNewWindows flag
Diffstat (limited to 'scripts')
-rw-r--r--scripts/VcpkgPowershellUtils.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/VcpkgPowershellUtils.ps1 b/scripts/VcpkgPowershellUtils.ps1
index 5381523f0..7a6a67c2c 100644
--- a/scripts/VcpkgPowershellUtils.ps1
+++ b/scripts/VcpkgPowershellUtils.ps1
@@ -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