mirror of https://github.com/spf13/viper.git
Current working directory is added to the config search paths by default
This commit is contained in:
parent
c861bdefb7
commit
40762f7541
7
viper.go
7
viper.go
|
@ -143,6 +143,13 @@ func New() *Viper {
|
||||||
v.env = make(map[string]string)
|
v.env = make(map[string]string)
|
||||||
v.aliases = make(map[string]string)
|
v.aliases = make(map[string]string)
|
||||||
|
|
||||||
|
wd, err := os.Getwd()
|
||||||
|
if err != nil {
|
||||||
|
jww.INFO.Println("Could not add cwd to search paths", err)
|
||||||
|
} else {
|
||||||
|
v.AddConfigPath(wd)
|
||||||
|
}
|
||||||
|
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue