pull/15/head
Nikita Bykov 5 years ago
parent 6c24440f52
commit 3a26c9acf1

@ -7,14 +7,16 @@ Pester extension that allows to run command and validate exit code
function Get-CommandResult { function Get-CommandResult {
Param ( Param (
[Parameter(Mandatory)][string] $Command [Parameter(Mandatory=$true)]
[string] $Command,
[switch] $Multiline
) )
# CMD trick to suppress and show error output because some commands write to stderr (for example, "python --version") # CMD trick to suppress and show error output because some commands write to stderr (for example, "python --version")
[string[]]$output = & $env:comspec /c "$Command 2>&1" [string[]]$output = & $env:comspec /c "$Command 2>&1"
$exitCode = $LASTEXITCODE $exitCode = $LASTEXITCODE
return @{ return @{
Output = $output Output = If ($Multiline -eq $true) { $output } else { [string]$output }
ExitCode = $exitCode ExitCode = $exitCode
} }
} }

Loading…
Cancel
Save