Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dlvhdr committed Jan 4, 2025
1 parent f169ff1 commit 49f01a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ func (parser ConfigParser) getDefaultConfigFileOrCreateIfMissing(repoPath *strin
} else if repoPath != nil {
basename := *repoPath + "/." + DashDir
repoConfigYml := basename + ".yml"
repoConfigYaml := basename + ".yml"
repoConfigYaml := basename + ".yaml"
if _, err := os.Stat(repoConfigYml); err == nil {
configFilePath = repoConfigYml
} else if _, err := os.Stat(repoConfigYaml); err == nil {
Expand Down

0 comments on commit 49f01a2

Please sign in to comment.