From 3294015ec31f1b728908fdc835ac2e682a3fc792 Mon Sep 17 00:00:00 2001 From: David Matslofva Date: Sat, 14 Feb 2026 08:43:00 +0100 Subject: [PATCH] versioncmd cleanup --- internal/cli/root.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/cli/root.go b/internal/cli/root.go index 9921fb0..462cbc0 100644 --- a/internal/cli/root.go +++ b/internal/cli/root.go @@ -23,10 +23,6 @@ var versionCmd = &cobra.Command{ Short: "Print the version", Run: func(cmd *cobra.Command, args []string) { fmt.Printf("reaper %s\n", version.Version) - if version.Date != "" { - fmt.Printf("built %s\n", version.Date) - } - fmt.Println(version.URL()) }, }