OLD | NEW |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package exec | 5 package exec |
6 | 6 |
7 import ( | 7 import ( |
8 "errors" | 8 "errors" |
9 "os" | 9 "os" |
10 "strings" | 10 "strings" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 e = "." + e | 56 e = "." + e |
57 } | 57 } |
58 exts = append(exts, e) | 58 exts = append(exts, e) |
59 } | 59 } |
60 if strings.IndexAny(file, `:\/`) != -1 { | 60 if strings.IndexAny(file, `:\/`) != -1 { |
61 if f, err = findExecutable(file, exts); err == nil { | 61 if f, err = findExecutable(file, exts); err == nil { |
62 return | 62 return |
63 } | 63 } |
64 return ``, &Error{file, err} | 64 return ``, &Error{file, err} |
65 } | 65 } |
66 » if pathenv := os.Getenv(`PATH`); pathenv == `` { | 66 » if f, err = findExecutable(`.\`+file, exts); err == nil { |
67 » » if f, err = findExecutable(`.\`+file, exts); err == nil { | 67 » » return |
68 » » » return | 68 » } |
69 » » } | 69 » if pathenv := os.Getenv(`PATH`); pathenv != `` { |
70 » } else { | |
71 for _, dir := range strings.Split(pathenv, `;`) { | 70 for _, dir := range strings.Split(pathenv, `;`) { |
72 if f, err = findExecutable(dir+`\`+file, exts); err == n
il { | 71 if f, err = findExecutable(dir+`\`+file, exts); err == n
il { |
73 return | 72 return |
74 } | 73 } |
75 } | 74 } |
76 } | 75 } |
77 return ``, &Error{file, ErrNotFound} | 76 return ``, &Error{file, ErrNotFound} |
78 } | 77 } |
OLD | NEW |