1
0
mirror of https://github.com/beego/bee.git synced 2025-07-15 20:02:17 +00:00

fix: fix build faild with code check!

This commit is contained in:
qiantao
2019-03-06 09:58:33 +08:00
parent f1826c0bc3
commit 95fded2840
5 changed files with 5 additions and 5 deletions

View File

@@ -116,7 +116,7 @@ func ParsePackagesFromDir(dirpath string) {
err = parsePackageFromDir(fpath)
if err != nil {
// Send the error to through the channel and continue walking
c <- fmt.Errorf("Error while parsing directory: %s", err.Error())
c <- fmt.Errorf("error while parsing directory: %s", err.Error())
return nil
}
}