hotfix for parsefiel

This commit is contained in:
astaxie 2014-11-05 22:23:54 +08:00
parent b43401b9f6
commit 950ff91d87
1 changed files with 4 additions and 2 deletions

View File

@ -42,11 +42,13 @@ func init() {
var (
lastupdateFilename string = "lastupdate.tmp"
commentFilename string = "commentsRouter.go"
commentFilename string
pkgLastupdate map[string]int64
genInfoList map[string][]ControllerComments
)
const COMMENTFL = "commentsRouter.go"
func init() {
pkgLastupdate = make(map[string]int64)
genInfoList = make(map[string][]ControllerComments)
@ -54,7 +56,7 @@ func init() {
func parserPkg(pkgRealpath, pkgpath string) error {
rep := strings.NewReplacer("/", "_", ".", "_")
commentFilename = rep.Replace(pkgpath) + "_" + commentFilename
commentFilename = rep.Replace(pkgpath) + "_" + COMMENTFL
if !compareFile(pkgRealpath) {
Info(pkgRealpath + " don't has updated")
return nil