From: spf13 Date: Tue, 12 Nov 2013 14:38:43 +0000 (-0500) Subject: restored behavior of respecting config values unless set by command flags. fixed... X-Git-Tag: v0.9~7 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6017599a;p=brevno-suite%2Fhugo restored behavior of respecting config values unless set by command flags. fixed #116 --- diff --git a/commands/hugo.go b/commands/hugo.go index d2461265..403c139e 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -71,9 +71,18 @@ func init() { func InitializeConfig() { Config = hugolib.SetupConfig(&CfgFile, &Source) - Config.BuildDrafts = Draft - Config.UglyUrls = UglyUrls - Config.Verbose = Verbose + + if HugoCmd.PersistentFlags().Lookup("build-drafts").Changed { + Config.BuildDrafts = Draft + } + + if HugoCmd.PersistentFlags().Lookup("uglyurls").Changed { + Config.UglyUrls = UglyUrls + } + + if HugoCmd.PersistentFlags().Lookup("verbose").Changed { + Config.Verbose = Verbose + } if BaseUrl != "" { Config.BaseUrl = BaseUrl }