Use os.Getenv("HOME") instead of "$HOME" for windows compatibility (#337)

This commit is contained in:
Elliot Morrison-Reed 2017-04-20 15:35:06 +02:00 committed by Albert Nigmatzianov
parent b655df6ce8
commit a3cd8ab85a
2 changed files with 5 additions and 5 deletions

View file

@ -210,8 +210,8 @@ func initConfig() {
}
viper.SetConfigName(".{{ .appName }}") // name of config file (without extension)
viper.AddConfigPath("$HOME") // adding home directory as first search path
viper.AutomaticEnv() // read in environment variables that match
viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
viper.AutomaticEnv() // read in environment variables that match
// If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil {

View file

@ -61,9 +61,9 @@ func initConfig() {
viper.SetConfigFile(cfgFile)
}
viper.SetConfigName(".cobra") // name of config file (without extension)
viper.AddConfigPath("$HOME") // adding home directory as first search path
viper.AutomaticEnv() // read in environment variables that match
viper.SetConfigName(".cobra") // name of config file (without extension)
viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
viper.AutomaticEnv() // read in environment variables that match
// If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil {