1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:44:40 -07:00

builder: update for os.Wait changes.

This compiles again.

R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/5687078
This commit is contained in:
Brad Fitzpatrick 2012-02-22 11:48:41 -08:00
parent 8b7cdb7f25
commit 0427c583a5

View File

@ -28,7 +28,7 @@ func run(envv []string, dir string, argv ...string) error {
// as well as writing it to logfile (if specified). It returns // as well as writing it to logfile (if specified). It returns
// process combined stdout and stderr output, exit status and error. // process combined stdout and stderr output, exit status and error.
// The error returned is nil, if process is started successfully, // The error returned is nil, if process is started successfully,
// even if exit status is not 0. // even if exit status is not successful.
func runLog(envv []string, logfile, dir string, argv ...string) (string, int, error) { func runLog(envv []string, logfile, dir string, argv ...string) (string, int, error) {
if *verbose { if *verbose {
log.Println("runLog", argv) log.Println("runLog", argv)
@ -51,11 +51,13 @@ func runLog(envv []string, logfile, dir string, argv ...string) (string, int, er
cmd.Stdout = w cmd.Stdout = w
cmd.Stderr = w cmd.Stderr = w
err := cmd.Run() startErr := cmd.Start()
if err != nil { if startErr != nil {
if ws, ok := err.(*exec.ExitError); ok { return "", 1, startErr
return b.String(), ws.ExitStatus(), nil
}
} }
return b.String(), 0, err exitStatus := 0
if err := cmd.Wait(); err != nil {
exitStatus = 1 // TODO(bradfitz): this is fake. no callers care, so just return a bool instead.
}
return b.String(), exitStatus, nil
} }