Watching doesn't built site 2x on write (ignores rename events). Also ignores tempora...
authorspf13 <steve.francia@gmail.com>
Thu, 24 Oct 2013 23:45:24 +0000 (16:45 -0700)
committerspf13 <steve.francia@gmail.com>
Thu, 24 Oct 2013 23:45:24 +0000 (16:45 -0700)
commands/hugo.go

index 819b5c207fcb44987c1e5b12149856634981da48..bdd1171c522bae4505b40759577dd3ede8a912ea 100644 (file)
@@ -181,7 +181,12 @@ func watchChange(ev *fsnotify.FileEvent) {
                fmt.Println("Static file changed, syncing\n")
                utils.CheckErr(copyStatic(), fmt.Sprintf("Error copying static files to %s", Config.GetAbsPath(Config.PublishDir)))
        } else {
-               fmt.Println("Change detected, rebuilding site\n")
-               utils.StopOnErr(buildSite())
+               if !ev.IsRename() { // Rename is always accompanied by a create or modify
+                       // Ignoring temp files created by editors (vim)
+                       if !strings.HasSuffix(ev.Name, "~") && !strings.HasSuffix(ev.Name, ".swp") {
+                               fmt.Println("Change detected, rebuilding site\n")
+                               utils.StopOnErr(buildSite())
+                       }
+               }
        }
 }