File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ package golang
18
18
19
19
import (
20
20
"encoding/json"
21
+ "errors"
21
22
"fmt"
22
23
"os"
23
24
"os/exec"
@@ -39,7 +40,8 @@ func findGoModulePath() (string, error) {
39
40
cmd .Env = append (cmd .Env , os .Environ ()... )
40
41
out , err := cmd .Output ()
41
42
if err != nil {
42
- if exitErr , isExitErr := err .(* exec.ExitError ); isExitErr {
43
+ var exitErr * exec.ExitError
44
+ if errors .As (err , & exitErr ) {
43
45
err = fmt .Errorf ("%s" , string (exitErr .Stderr ))
44
46
}
45
47
return "" , err
@@ -77,7 +79,8 @@ func FindCurrentRepo() (string, error) {
77
79
cmd := exec .Command ("go" , "mod" , "init" )
78
80
cmd .Env = append (cmd .Env , os .Environ ()... )
79
81
if _ , err := cmd .Output (); err != nil {
80
- if exitErr , isExitErr := err .(* exec.ExitError ); isExitErr {
82
+ var exitErr * exec.ExitError
83
+ if errors .As (err , & exitErr ) {
81
84
err = fmt .Errorf ("%s" , string (exitErr .Stderr ))
82
85
}
83
86
// give up, let the user figure it out
You can’t perform that action at this time.
0 commit comments