restored behavior of respecting config values unless set by command flags. fixed...
authorspf13 <steve.francia@gmail.com>
Tue, 12 Nov 2013 14:38:43 +0000 (09:38 -0500)
committerspf13 <steve.francia@gmail.com>
Tue, 12 Nov 2013 14:38:43 +0000 (09:38 -0500)
commands/hugo.go

index d246126599d965b371e497a477231a70e192a43d..403c139e74d278bcba07e45b009099ab699a101f 100644 (file)
@@ -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
        }