Force full rebuild when site config changes
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 14 Feb 2016 14:16:55 +0000 (15:16 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 14 Feb 2016 14:16:55 +0000 (15:16 +0100)
Fixes #1840

commands/hugo.go

index f363cc7a0127eb0b2dec2b194202aea633ece323..83dae0d118da211d6e37c0efdcc8e77f9734a923 100644 (file)
@@ -467,6 +467,8 @@ func watchConfig() {
        viper.WatchConfig()
        viper.OnConfigChange(func(e fsnotify.Event) {
                fmt.Println("Config file changed:", e.Name)
+               // Force a full rebuild
+               MainSite = nil
                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 initialized