diff --git a/scripts/make.go b/scripts/make.go index feb750aa7c..0aa134c7ee 100644 --- a/scripts/make.go +++ b/scripts/make.go @@ -188,7 +188,7 @@ func quotemaybe(args []string) []string { func getoutput(cmd string, args ...interface{}) string { x := exec.Command(cmd, strflatten(args)...) x.Env = os.Environ() - out, err := x.CombinedOutput() + out, err := x.Output() if err != nil { log.Fatal(err) }