Better organization of loading defaults
authorspf13 <steve.francia@gmail.com>
Wed, 20 May 2015 22:50:32 +0000 (18:50 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 20 May 2015 22:50:32 +0000 (18:50 -0400)
commands/hugo.go

index 84c94a3ef11cab887f90c8c0d83f48d3d123cc9b..f19c1fd4eb39afc4e45b108ab57a4d1af19ec64c 100644 (file)
@@ -119,17 +119,7 @@ func init() {
   You need to open cmd.exe and run it from there.`
 }
 
-// InitializeConfig initializes a config file with sensible default configuration flags.
-func InitializeConfig() {
-       viper.SetConfigFile(CfgFile)
-       viper.AddConfigPath(Source)
-       err := viper.ReadInConfig()
-       if err != nil {
-               jww.ERROR.Println("Unable to locate Config file. Perhaps you need to create a new site. Run `hugo help new` for details")
-       }
-
-       viper.RegisterAlias("indexes", "taxonomies")
-
+func LoadDefaultSettings() {
        viper.SetDefault("Watch", false)
        viper.SetDefault("MetaDataFormat", "toml")
        viper.SetDefault("DisableRSS", false)
@@ -164,6 +154,20 @@ func InitializeConfig() {
        viper.SetDefault("Blackfriday", helpers.NewBlackfriday())
        viper.SetDefault("RSSUri", "index.xml")
        viper.SetDefault("SectionPagesMenu", "")
+}
+
+// InitializeConfig initializes a config file with sensible default configuration flags.
+func InitializeConfig() {
+       viper.SetConfigFile(CfgFile)
+       viper.AddConfigPath(Source)
+       err := viper.ReadInConfig()
+       if err != nil {
+               jww.ERROR.Println("Unable to locate Config file. Perhaps you need to create a new site. Run `hugo help new` for details")
+       }
+
+       viper.RegisterAlias("indexes", "taxonomies")
+
+       LoadDefaultSettings()
 
        if hugoCmdV.PersistentFlags().Lookup("buildDrafts").Changed {
                viper.Set("BuildDrafts", Draft)