mirror of
https://github.com/beego/bee.git
synced 2025-07-06 09:50:18 +00:00
fix: check existence of file go.mod.
This commit is contained in:
@ -29,6 +29,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
|
"github.com/astaxie/beego/utils"
|
||||||
beeLogger "github.com/beego/bee/logger"
|
beeLogger "github.com/beego/bee/logger"
|
||||||
"github.com/beego/bee/logger/colors"
|
"github.com/beego/bee/logger/colors"
|
||||||
)
|
)
|
||||||
@ -457,8 +458,11 @@ func IsModuleEnabled(gopaths []string, cwd string) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true
|
if utils.FileExists(filepath.Join(cwd, "go.mod")) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// InDir checks whether path is in the file tree rooted at dir.
|
// InDir checks whether path is in the file tree rooted at dir.
|
||||||
|
Reference in New Issue
Block a user