From 7b8192d8507dbe2602bc374679def3e74a4218eb Mon Sep 17 00:00:00 2001 From: Grigory Date: Fri, 17 Nov 2023 02:26:40 +0500 Subject: [PATCH] chore(cmd/update): remove redundant info message --- src/cmd/update.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cmd/update.go b/src/cmd/update.go index 537070a33c..c704cde943 100644 --- a/src/cmd/update.go +++ b/src/cmd/update.go @@ -7,7 +7,6 @@ import ( "os/exec" "path/filepath" "runtime" - "strings" backupstatus "github.com/spicetify/spicetify-cli/src/status/backup" "github.com/spicetify/spicetify-cli/src/utils" @@ -112,7 +111,6 @@ func Update(currentVersion string) bool { if !backStat.IsOutdated() { cmd = append(cmd[:1], append([]string{"restore"}, cmd[1:]...)...) } - utils.PrintInfo(`Please run "` + strings.Join(cmd, " ") + `" to receive new features and bug fixes`) return true }