return userErrorRegexp.MatchString(err.Error())
}
-//HugoCmd is Hugo's root command. Every other command attached to HugoCmd is a child command to it.
+// HugoCmd is Hugo's root command.
+// Every other command attached to HugoCmd is a child command to it.
var HugoCmd = &cobra.Command{
Use: "hugo",
Short: "hugo builds your site",
return err
}
- watchConfig()
+ if BuildWatch {
+ viper.Set("DisableLiveReload", true)
+ watchConfig()
+ }
return build()
-
},
}
fmt.Println("Config file changed:", e.Name)
utils.CheckErr(buildSite(true))
if !viper.GetBool("DisableLiveReload") {
- // Will block forever trying to write to a channel that nobody is reading if livereload isn't initalized
+ // Will block forever trying to write to a channel that nobody is reading if livereload isn't initialized
livereload.ForceRefresh()
}
})
}
if !BuildWatch && !viper.GetBool("DisableLiveReload") {
- // Will block forever trying to write to a channel that nobody is reading if livereload isn't initalized
+ // Will block forever trying to write to a channel that nobody is reading if livereload isn't initialized
// force refresh when more than one file
if len(staticEvents) > 0 {
rebuildSite(dynamicEvents)
if !BuildWatch && !viper.GetBool("DisableLiveReload") {
- // Will block forever trying to write to a channel that nobody is reading if livereload isn't initalized
+ // Will block forever trying to write to a channel that nobody is reading if livereload isn't initialized
livereload.ForceRefresh()
}
}