1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-28 04:44:34 +02:00

fix: add a debug log on git config

refs #2537

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2021-09-28 10:49:59 -03:00
parent 0c51988ff1
commit c7580bf49f
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -19,7 +19,7 @@ func ExtractRepoFromConfig() (result config.Repo, err error) {
if err != nil {
return result, fmt.Errorf("no remote configured to list refs from")
}
log.WithField("rawurl", string(out)).Debugf("got git url")
log.WithField("rawurl", out).Debugf("got git url")
return ExtractRepoFromURL(out)
}