mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-29 01:44:39 +02:00
0935faf8e2
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
45 lines
873 B
Go
45 lines
873 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime/debug"
|
|
|
|
"github.com/goreleaser/goreleaser/cmd"
|
|
)
|
|
|
|
// nolint: gochecknoglobals
|
|
var (
|
|
version = "dev"
|
|
commit = ""
|
|
date = ""
|
|
builtBy = ""
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute(
|
|
buildVersion(version, commit, date, builtBy),
|
|
os.Exit,
|
|
os.Args[1:],
|
|
)
|
|
}
|
|
|
|
const website = "\n\nhttps://goreleaser.com"
|
|
|
|
func buildVersion(version, commit, date, builtBy string) string {
|
|
result := version
|
|
if commit != "" {
|
|
result = fmt.Sprintf("%s\ncommit: %s", result, commit)
|
|
}
|
|
if date != "" {
|
|
result = fmt.Sprintf("%s\nbuilt at: %s", result, date)
|
|
}
|
|
if builtBy != "" {
|
|
result = fmt.Sprintf("%s\nbuilt by: %s", result, builtBy)
|
|
}
|
|
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 + website
|
|
}
|