From 09261d2b52fa739bb6321c866566223f11061201 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 27 Jul 2024 15:40:57 -0700 Subject: Fix missing version in Docker and Makefile build --- cmd/mobius-hotline-server/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cmd/mobius-hotline-server') 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) } -- cgit