mirror of
https://github.com/beego/bee.git
synced 2024-10-31 18:50:54 +00:00
fix #332 swagger generate bug on windows
This commit is contained in:
parent
932f16ba4e
commit
39cc0bc04e
2
bee.go
2
bee.go
@ -160,7 +160,7 @@ func main() {
|
||||
|
||||
// Check if current directory is inside the GOPATH,
|
||||
// if so parse the packages inside it.
|
||||
if strings.Contains(currentpath, GetGOPATHs()[0]+"/src") && isGenerateDocs(cmd.Name(), args) {
|
||||
if IsInGOPATH(currentpath) && isGenerateDocs(cmd.Name(), args) {
|
||||
parsePackagesFromDir(currentpath)
|
||||
}
|
||||
|
||||
|
8
util.go
8
util.go
@ -68,6 +68,14 @@ func GetGOPATHs() []string {
|
||||
return paths
|
||||
}
|
||||
|
||||
// IsInGOPATH checks the path is in the fisrt GOPATH(/src) or not
|
||||
func IsInGOPATH(thePath string) bool {
|
||||
if runtime.GOOS == "windows" {
|
||||
thePath = filepath.ToSlash(thePath)
|
||||
}
|
||||
return strings.Contains(thePath, GetGOPATHs()[0]+"/src")
|
||||
}
|
||||
|
||||
// IsBeegoProject checks whether the current path is a Beego application or not
|
||||
func IsBeegoProject(thePath string) bool {
|
||||
mainFiles := []string{}
|
||||
|
Loading…
Reference in New Issue
Block a user