diff --git a/pester-extensions.psm1 b/pester-extensions.psm1 index b5ab964..7771b87 100644 --- a/pester-extensions.psm1 +++ b/pester-extensions.psm1 @@ -12,11 +12,7 @@ function Get-CommandResult { [switch] $Multiline ) # CMD trick to suppress and show error output because some commands write to stderr (for example, "python --version") - If ($IsWindows) { - [string[]]$output = & $env:comspec /c "$Command 2>&1" - } else { - $output = & bash -c "$Command 2>&1" - } + $output = & bash -c "$Command 2>&1" $exitCode = $LASTEXITCODE return @{