1
0
mirror of https://github.com/beego/bee.git synced 2024-06-16 13:53:32 +00:00

Generate document errors in windows

This commit is contained in:
wzshiming 2017-05-06 18:15:23 +08:00
parent a7ff7b8615
commit d34d2da582

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
}
}