Fix #593 problem with `hugo -w`
authorKartik Singhal <kartiksinghal@gmail.com>
Fri, 31 Oct 2014 06:13:44 +0000 (11:43 +0530)
committerspf13 <steve.francia@gmail.com>
Sun, 2 Nov 2014 04:44:55 +0000 (00:44 -0400)
commands/hugo.go

index 2fece29c87e4d5031d95603feb992466791dc922..838fd94a4514a90e878144b05a7187b20aa1b5e8 100644 (file)
@@ -352,10 +352,10 @@ func NewWatcher(port int) error {
                                }
 
                                if static_changed {
-                                       fmt.Print("Static file changed, syncing\n\n")
+                                       jww.FEEDBACK.Println("Static file changed, syncing\n")
                                        utils.StopOnErr(copyStatic(), fmt.Sprintf("Error copying static files to %s", helpers.AbsPathify(viper.GetString("PublishDir"))))
 
-                                       if !viper.GetBool("DisableLiveReload") {
+                                       if !BuildWatch && !viper.GetBool("DisableLiveReload") {
                                                // Will block forever trying to write to a channel that nobody is reading if livereload isn't initalized
 
                                                // force refresh when more than one file
@@ -376,7 +376,7 @@ func NewWatcher(port int) error {
                                        fmt.Println(time.Now().Format(layout))
                                        utils.StopOnErr(buildSite(true))
 
-                                       if !viper.GetBool("DisableLiveReload") {
+                                       if !BuildWatch && !viper.GetBool("DisableLiveReload") {
                                                // Will block forever trying to write to a channel that nobody is reading if livereload isn't initalized
                                                livereload.ForceRefresh()
                                        }