diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-07-27 15:40:57 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-07-27 15:40:57 -0700 |
| commit | 09261d2b52fa739bb6321c866566223f11061201 (patch) | |
| tree | 5f59ad0b0855595e3c4acc80cdd7a1291349f53f /cmd/mobius-hotline-server | |
| parent | 117c2040b807dfd3cc578e8b5ba07ce504b102fe (diff) | |
Fix missing version in Docker and Makefile build
Diffstat (limited to 'cmd/mobius-hotline-server')
| -rw-r--r-- | cmd/mobius-hotline-server/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/mobius-hotline-server/main.go b/cmd/mobius-hotline-server/main.go index 1390dda..e4e0954 100644 --- a/cmd/mobius-hotline-server/main.go +++ b/cmd/mobius-hotline-server/main.go @@ -24,7 +24,6 @@ var cfgTemplate embed.FS var ( version = "dev" commit = "none" - date = "unknown" ) func main() { @@ -45,7 +44,7 @@ func main() { flag.Parse() if *printVersion { - fmt.Printf("mobius-hotline-server %s, commit %s, built on %s\n", version, commit, date) + fmt.Printf("mobius-hotline-server version %s, commit %s\n", version, commit) os.Exit(0) } |