Skip to content

Commit aabc9a9

Browse files
authored
Merge pull request #48 from pluveto/pluveto-patch-rc-1
Fix: path seperator
2 parents 692d5cd + 644a3c3 commit aabc9a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func loadConfig(cfg *xapp.Config) {
196196

197197
var configFiles = map[string]bool{
198198
filepath.Join(homeDir, ".upgit.config.toml"): false,
199-
filepath.Join(homeDir, ".config/upgitrc"): false,
199+
filepath.Join(homeDir, filepath.Join(".config", "upgitrc")): false,
200200
filepath.Join(appDir, "config.toml"): false,
201201
filepath.Join(appDir, "upgit.toml"): false,
202202
}

0 commit comments

Comments
 (0)