common/powershell: fix dropped error
This commit is contained in:
parent
0f9c3e2cb4
commit
f808d1d968
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue