Skip to content

Commit

Permalink
Merge pull request #48 from pluveto/pluveto-patch-rc-1
Browse files Browse the repository at this point in the history
Fix: path seperator
  • Loading branch information
pluveto authored Sep 7, 2022
2 parents 692d5cd + 644a3c3 commit aabc9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func loadConfig(cfg *xapp.Config) {

var configFiles = map[string]bool{
filepath.Join(homeDir, ".upgit.config.toml"): false,
filepath.Join(homeDir, ".config/upgitrc"): false,
filepath.Join(homeDir, filepath.Join(".config", "upgitrc")): false,
filepath.Join(appDir, "config.toml"): false,
filepath.Join(appDir, "upgit.toml"): false,
}
Expand Down

0 comments on commit aabc9a9

Please sign in to comment.