Simplifying goGet function

This commit is contained in:
Steve Francia 2021-07-02 11:01:58 -04:00
parent cf87fc4e30
commit 26825627c2

View file

@ -116,8 +116,7 @@ type CurDir struct {
}
func goGet(mod string) error {
cmd := exec.Command("go", "get", mod)
return cmd.Run()
return exec.Command("go", "get", mod).Run()
}
func modInfoJSON(args ...string) []byte {