From c7058a87c2340d324e9c87a87f481a7fde34e016 Mon Sep 17 00:00:00 2001 From: Stanislav Katkov Date: Sat, 30 Sep 2023 13:16:46 +0300 Subject: [PATCH] show release date --- cmd/about.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/about.go b/cmd/about.go index 4d02d38..ee66c09 100644 --- a/cmd/about.go +++ b/cmd/about.go @@ -23,7 +23,7 @@ func NewAboutCommand(version, commitHash, date string) AboutCommand { func (a *aboutCommand) Run() { about_message := fmt.Sprintf("Version: %s", a.version) + "\n" about_message += fmt.Sprintf("Commit Hash: %s", a.commitHash) + "\n" - about_message += fmt.Sprintf("Build Hash: %s", a.date) + "\n" + about_message += fmt.Sprintf("Release Date: %s", a.date) + "\n" fmt.Println(about_message) }