From 8c840480336de030471fffb09623fbc124809dcb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 14 Feb 2016 15:16:55 +0100 Subject: [PATCH] Force full rebuild when site config changes Fixes #1840 --- commands/hugo.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/hugo.go b/commands/hugo.go index f363cc7a..83dae0d1 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -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 -- 2.30.2