mirror of
https://github.com/beego/bee.git
synced 2025-07-10 21:41:01 +00:00
Merge 1b71193c49
into 46fc9d75ae
This commit is contained in:
@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user