Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(856)

Side by Side Diff: src/pkg/os/exec/lp_windows.go

Issue 5434093: code review 5434093: os/exec: make LookPath always search the current direct... (Closed)
Patch Set: diff -r 1713e0b34111 https://go.googlecode.com/hg/ Created 13 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b