We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d14d3 commit 63e6388Copy full SHA for 63e6388
internal/config/config.go
@@ -51,9 +51,9 @@ func (c *Config) initialize() error {
51
if !found {
52
xdgConfigHome = sysutil.HomeDir()
53
}
54
- p := filepath.Join(xdgConfigHome, "commitizen", RCFilename)
55
- if fsutil.IsExists(p) {
56
- fpath = p
+ xdgConfigPath := filepath.Join(xdgConfigHome, "commitizen", RCFilename)
+ if fsutil.IsExists(xdgConfigPath) {
+ fpath = xdgConfigPath
57
58
59
0 commit comments