Avoid searching for config file in executable's path
Viper should not be searching for config.{json,toml,yaml,yml}
in the directory where the `hugo` executable binary is located,
i.e. do not try to look for e.g. $GOPATH/bin/config.toml or
/usr/local/bin/config.toml
diff --git a/viper.go b/viper.go
index 2d51b9b..750406b 100644
--- a/viper.go
+++ b/viper.go
@@ -777,15 +777,9 @@
}
}
- cwd, _ := findCWD()
- file := v.searchInPath(cwd)
- if file != "" {
- return file, nil
- }
-
// try the current working directory
wd, _ := os.Getwd()
- file = v.searchInPath(wd)
+ file := v.searchInPath(wd)
if file != "" {
return file, nil
}