From: spf13 Date: Thu, 10 Apr 2014 18:24:18 +0000 (-0400) Subject: Updated to work with the latest viper X-Git-Tag: v0.11~75 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=41adafbc;p=brevno-suite%2Fhugo Updated to work with the latest viper --- diff --git a/commands/hugo.go b/commands/hugo.go index b446e696..c5393e90 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -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")