Updated to work with the latest viper
authorspf13 <steve.francia@gmail.com>
Thu, 10 Apr 2014 18:24:18 +0000 (14:24 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 10 Apr 2014 18:24:18 +0000 (14:24 -0400)
commands/hugo.go

index b446e696a4ccfdcb8823ac555d027574528ab3e1..c5393e90fc95133a6e9ce9fb3783fa5a1411ed0f 100644 (file)
@@ -84,7 +84,10 @@ func init() {
 func InitializeConfig() {
        viper.SetConfigName(CfgFile)
        viper.AddConfigPath(Source)
-       viper.ReadInConfig()
+       err := viper.ReadInConfig()
+       if err != nil {
+               jww.ERROR.Println("Config not found... using only defaults, stuff may not work")
+       }
 
        viper.RegisterAlias("taxonomies", "indexes")