File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,9 @@ function Wait-LocalTest {
377
377
try {
378
378
[System.Threading.Tasks.Task ]::WaitAll(@ ($StdOut , $StdError ))
379
379
$Out = $StdOut.Result.Trim ()
380
+ $Err = $StdError.Result.Trim ()
380
381
if ($Out.Length -ne 0 ) { Write-Host $Out }
382
+ if ($Err.Length -ne 0 ) { Write-Error $Err }
381
383
} catch {}
382
384
if ($Silent ) {
383
385
Write-Host " Silently ignoring Client timeout!"
@@ -390,7 +392,9 @@ function Wait-LocalTest {
390
392
try {
391
393
[System.Threading.Tasks.Task ]::WaitAll(@ ($StdOut , $StdError ))
392
394
$Out = $StdOut.Result.Trim ()
395
+ $Err = $StdError.Result.Trim ()
393
396
if ($Out.Length -ne 0 ) { Write-Host $Out }
397
+ if ($Err.Length -ne 0 ) { Write-Error $Err }
394
398
} catch {}
395
399
if ($Silent ) {
396
400
Write-Host " Silently ignoring Client exit code: $ ( $Process.ExitCode ) "
You can’t perform that action at this time.
0 commit comments