Skip to content

Commit

Permalink
fix: fix a trivial bug
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Mar 30, 2024
1 parent 2d06803 commit 006414b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config-finder/config_finder.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func ParseGlobalConfigFilePaths(pwd, env string) []string {
continue
}
s = filepath.Clean(s)
if filepath.IsAbs(s) {
if !filepath.IsAbs(s) {
s = filepath.Join(pwd, s)
}
if _, ok := m[s]; ok {
Expand Down

0 comments on commit 006414b

Please sign in to comment.