mirror of
https://github.com/spf13/cobra
synced 2025-05-05 21:07:24 +00:00
Use os.Getenv("HOME") instead of "$HOME" for windows compatibility
This commit is contained in:
parent
37c3f80603
commit
c888c97288
2 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ func initConfig() {
|
||||||
}
|
}
|
||||||
|
|
||||||
viper.SetConfigName(".{{ .appName }}") // name of config file (without extension)
|
viper.SetConfigName(".{{ .appName }}") // name of config file (without extension)
|
||||||
viper.AddConfigPath("$HOME") // adding home directory as first search path
|
viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
|
||||||
viper.AutomaticEnv() // read in environment variables that match
|
viper.AutomaticEnv() // read in environment variables that match
|
||||||
|
|
||||||
// If a config file is found, read it in.
|
// If a config file is found, read it in.
|
||||||
|
|
|
@ -62,7 +62,7 @@ func initConfig() {
|
||||||
}
|
}
|
||||||
|
|
||||||
viper.SetConfigName(".cobra") // name of config file (without extension)
|
viper.SetConfigName(".cobra") // name of config file (without extension)
|
||||||
viper.AddConfigPath("$HOME") // adding home directory as first search path
|
viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
|
||||||
viper.AutomaticEnv() // read in environment variables that match
|
viper.AutomaticEnv() // read in environment variables that match
|
||||||
|
|
||||||
// If a config file is found, read it in.
|
// If a config file is found, read it in.
|
||||||
|
|
Loading…
Add table
Reference in a new issue