only watch go file's modify

This commit is contained in:
astaxie 2013-07-30 15:23:14 +08:00
parent 058289f79d
commit bf5f0baed7
1 changed files with 11 additions and 0 deletions

View File

@ -33,6 +33,9 @@ func NewWatcher(paths []string) {
if checkTMPFile(e.Name) {
continue
}
if !checkIsGoFile(e.Name) {
continue
}
if t, ok := eventTime[e.Name]; ok {
// if 500ms change many times, then ignore it.
@ -135,3 +138,11 @@ func checkTMPFile(name string) bool {
}
return false
}
// checkIsGoFile return true if the name is HasSuffix go
func checkIsGoFile(name string) bool {
if strings.HasSuffix(name, ".go") {
return true
}
return false
}