1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-30 04:50:45 +02:00

fix: print website on version

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2021-07-23 23:26:19 -03:00
parent bf19dc1079
commit b97f29f1d7
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -38,5 +38,5 @@ func buildVersion(version, commit, date, builtBy string) string {
if info, ok := debug.ReadBuildInfo(); ok && info.Main.Sum != "" {
result = fmt.Sprintf("%s\nmodule version: %s, checksum: %s", result, info.Main.Version, info.Main.Sum)
}
return result
return result + "\n\nhttps://goreleaser.com"
}