Merge pull request #8825 from alrs/fix-powershell-err

common/powershell: Fix Dropped Error
pull/8830/head
Megan Marsh 6 years ago committed by GitHub
commit 6540891ca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -112,7 +112,9 @@ func IsPowershellAvailable() (bool, string, error) {
func (ps *PowerShellCmd) getPowerShellPath() (string, error) {
powershellAvailable, path, err := IsPowershellAvailable()
if err != nil {
log.Fatalf("IsPowershellAvailable: %v", err)
}
if !powershellAvailable {
log.Fatal("Cannot find PowerShell in the path")
return "", err

Loading…
Cancel
Save