From f3606c0de12f9e75eda6b79d8905383305bb6143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 27 Jul 2023 10:23:03 -0400 Subject: [PATCH] fix: version upgrade commands with Homebrew (#1723) --- internal/common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/common/common.go b/internal/common/common.go index 617b8c826..70967b227 100644 --- a/internal/common/common.go +++ b/internal/common/common.go @@ -23,7 +23,7 @@ func CheckForVersionUpdate() { if res.Outdated { switch runtime.GOOS { case "darwin": - fmt.Printf("A newer version (v%s) is available! Please upgrade with: \"brew upgrade kubefirst\"\n", res.Current) + fmt.Printf("A newer version (v%s) is available! Please upgrade with: \"brew update && brew upgrade kubefirst\"\n", res.Current) default: fmt.Printf("A newer version (v%s) is available! \"https://github.com/kubefirst/kubefirst/blob/main/build/README.md\"\n", res.Current) }