aboutsummaryrefslogtreecommitdiffstats
path: root/repository/gogit_config.go
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-11-27 20:56:45 -0500
committerSteve Moyer <smoyer1@selesy.com>2022-11-27 20:56:45 -0500
commit49929c034f52272986ea6ac7457e64dbaa9454cb (patch)
tree8b025e72fedaa084cf445d17dbdab0e060cf9e0c /repository/gogit_config.go
parent64c18b15a4a0c8b7e59587aa09de92d52c698ede (diff)
downloadgit-bug-49929c034f52272986ea6ac7457e64dbaa9454cb.tar.gz
feat: wrap ErrMultipleConfigEntry to report duplicate key
References #935.
Diffstat (limited to 'repository/gogit_config.go')
-rw-r--r--repository/gogit_config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/repository/gogit_config.go b/repository/gogit_config.go
index 87141e9d..2bdbadc0 100644
--- a/repository/gogit_config.go
+++ b/repository/gogit_config.go
@@ -130,7 +130,7 @@ func (cr *goGitConfigReader) ReadString(key string) (string, error) {
return "", fmt.Errorf("%w: missing key %s", ErrNoConfigEntry, key)
}
if len(section.OptionAll(optionName)) > 1 {
- return "", ErrMultipleConfigEntry
+ return "", fmt.Errorf("%w: duplicated key %s", ErrMultipleConfigEntry, key)
}
return section.Option(optionName), nil
default:
@@ -144,7 +144,7 @@ func (cr *goGitConfigReader) ReadString(key string) (string, error) {
return "", fmt.Errorf("%w: missing key %s", ErrNoConfigEntry, key)
}
if len(subsection.OptionAll(optionName)) > 1 {
- return "", ErrMultipleConfigEntry
+ return "", fmt.Errorf("%w: duplicated key %s", ErrMultipleConfigEntry, key)
}
return subsection.Option(optionName), nil
}