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

exec: make LookPath work even when PATHEXT env variable is not set on Windows

R=golang-dev, mattn.jp
CC=golang-dev
https://golang.org/cl/4559062
This commit is contained in:
Alex Brainman 2011-06-14 11:46:05 -04:00 committed by Russ Cox
parent 5af8e53a14
commit c195cc8d82

View File

@ -42,14 +42,19 @@ func findExecutable(file string, exts []string) (string, os.Error) {
}
func LookPath(file string) (f string, err os.Error) {
x := os.Getenv(`PATHEXT`)
if x == `` {
x = `.COM;.EXE;.BAT;.CMD`
}
exts := []string{}
if x := os.Getenv(`PATHEXT`); x != `` {
exts = strings.Split(strings.ToLower(x), `;`, -1)
for i, e := range exts {
if e == `` || e[0] != '.' {
exts[i] = `.` + e
}
for _, e := range strings.Split(strings.ToLower(x), `;`, -1) {
if e == "" {
continue
}
if e[0] != '.' {
e = "." + e
}
exts = append(exts, e)
}
if strings.Contains(file, `\`) || strings.Contains(file, `/`) {
if f, err = findExecutable(file, exts); err == nil {