1
0
의 미러 https://github.com/beego/bee.git synced 2025-07-14 18:21:02 +00:00
This commit is contained in:
astaxie
2017-04-24 21:00:39 +08:00
부모 6afbafa250
커밋 ffbe29ae22

파일 보기

@ -60,9 +60,6 @@ func GetGOPATHs() []string {
// IsInGOPATH checks whether the path is inside of any GOPATH or not
func IsInGOPATH(thePath string) bool {
if runtime.GOOS == "windows" {
thePath = filepath.ToSlash(thePath)
}
for _, gopath := range GetGOPATHs() {
if strings.Contains(thePath, filepath.Join(gopath, "src")) {
return true