diff --git a/configfile.go b/configfile.go index 6b0eeaa..9e1ffab 100644 --- a/configfile.go +++ b/configfile.go @@ -15,14 +15,13 @@ func Path(fileExtension string) (string, error) { paths := []string{ filepath.Join("/etc/", executableName, configFileName), filepath.Join("/etc/", configFileName), - filepath.Join("etc", configFileName), filepath.Join(userConfigDir, executableName, configFileName), filepath.Join(userConfigDir, configFileName), filepath.Clean(configFileName), } for _, path := range paths { - if _, err := os.Stat(path); err != nil { + if _, err := os.Stat(path); err == nil { return path, nil } }