diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-11-27 20:56:45 -0500 |
---|---|---|
committer | Steve Moyer <smoyer1@selesy.com> | 2022-11-27 20:56:45 -0500 |
commit | 49929c034f52272986ea6ac7457e64dbaa9454cb (patch) | |
tree | 8b025e72fedaa084cf445d17dbdab0e060cf9e0c /repository/gogit_config.go | |
parent | 64c18b15a4a0c8b7e59587aa09de92d52c698ede (diff) | |
download | git-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.go | 4 |
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 } |