From e4ef37283cc0685c9f1d64d8c6c67ca27d29e708 Mon Sep 17 00:00:00 2001 From: Brian Strauch Date: Tue, 20 Jul 2021 22:22:32 -0500 Subject: [PATCH] improve update command --- internal/update/update.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/update/update.go b/internal/update/update.go index 28631af..0ddd13f 100644 --- a/internal/update/update.go +++ b/internal/update/update.go @@ -14,7 +14,7 @@ const repo = "brianstrauch/spotify-cli" func NewCommand() *cobra.Command { return &cobra.Command{ Use: "update", - Short: "update to the latest version", + Short: "update CLI to the latest version", RunE: func(cmd *cobra.Command, _ []string) error { isUpdated, err := IsUpdated(cmd) if err != nil { @@ -34,7 +34,7 @@ func NewCommand() *cobra.Command { return err } - cmd.Printf("Updated CLI to version %s!\n", latest.Version.String()) + cmd.Printf("🎁 v%s\n", latest.Version.String()) return nil }, }