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) }