common/powershell: fix dropped error

This commit is contained in:
Lars Lehtonen 2020-03-02 14:45:22 -08:00
parent 0f9c3e2cb4
commit f808d1d968
No known key found for this signature in database
GPG Key ID: 8137D474EBCB04F2
1 changed files with 3 additions and 1 deletions

View File

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