In absPath, skip empty paths.

This commit is contained in:
Ward Vandewege 2021-04-23 16:42:27 -04:00
parent 328f6ea455
commit c5a3d0b01c

View File

@ -285,7 +285,7 @@ func main() {
func absPath(path string) string {
// If a relative path is provided, prefix it with the the directory where
// the config file was found.
if !strings.HasPrefix(path, "/") {
if (path != "") && !strings.HasPrefix(path, "/") {
dir, _ := filepath.Split(viper.ConfigFileUsed())
if dir != "" {
path = dir + "/" + path