This commit is contained in:
wzshiming 2017-05-19 22:37:52 +00:00 committed by GitHub
commit 8d4dfc9da0
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ func GetGOPATHs() []string {
// IsInGOPATH checks whether the path is inside of any GOPATH or not
func IsInGOPATH(thePath string) bool {
for _, gopath := range GetGOPATHs() {
if strings.Contains(thePath, filepath.Join(gopath, "src")) {
b, _ := filepath.Rel(thePath, filepath.Join(gopath, "src"))
if strings.Contains(b, "..") {
return true
}
}