mirror of
https://github.com/beego/bee.git
synced 2024-11-22 15:10:54 +00:00
commit
fa5d72e565
2
pack.go
2
pack.go
@ -455,7 +455,7 @@ func packDirectory(excludePrefix []string, excludeSuffix []string,
|
|||||||
func isBeegoProject(thePath string) bool {
|
func isBeegoProject(thePath string) bool {
|
||||||
fh, _ := os.Open(thePath)
|
fh, _ := os.Open(thePath)
|
||||||
fis, _ := fh.Readdir(-1)
|
fis, _ := fh.Readdir(-1)
|
||||||
regex := regexp.MustCompile(`(?s)package main.*?import.*?\(.*?"github.com/astaxie/beego".*?\).*func main()`)
|
regex := regexp.MustCompile(`(?s)package main.*?import.*?\(.*?github.com/astaxie/beego".*?\).*func main()`)
|
||||||
for _, fi := range fis {
|
for _, fi := range fis {
|
||||||
if fi.IsDir() == false && strings.HasSuffix(fi.Name(), ".go") {
|
if fi.IsDir() == false && strings.HasSuffix(fi.Name(), ".go") {
|
||||||
data, err := ioutil.ReadFile(path.Join(thePath, fi.Name()))
|
data, err := ioutil.ReadFile(path.Join(thePath, fi.Name()))
|
||||||
|
Loading…
Reference in New Issue
Block a user