mirror of
https://github.com/golang/go
synced 2024-11-18 02:34:46 -07:00
os/exec: gofmt
CL 109361 introduced some changes which were not properly gofmt'ed. Because the CL was sent via Github no gofmt checks were performed on it (cf. #24946, #18548). Change-Id: I207065f01161044c420e272f4fd112e0a59be259 Reviewed-on: https://go-review.googlesource.com/115356 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
323c85862a
commit
7ea2c8cf1b
@ -117,7 +117,7 @@ func createEnv(dir, PATH, PATHEXT string) []string {
|
|||||||
dirs[i] = filepath.Join(dir, dirs[i])
|
dirs[i] = filepath.Join(dir, dirs[i])
|
||||||
}
|
}
|
||||||
path := strings.Join(dirs, ";")
|
path := strings.Join(dirs, ";")
|
||||||
env = updateEnv(env, "PATH", os.Getenv("SystemRoot") + "/System32;" + path)
|
env = updateEnv(env, "PATH", os.Getenv("SystemRoot")+"/System32;"+path)
|
||||||
return env
|
return env
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user