Skip to content

Commit

Permalink
fix: version upgrade commands with Homebrew (#1723)
Browse files Browse the repository at this point in the history
  • Loading branch information
fharper authored Jul 27, 2023
1 parent 9dd1e5f commit f3606c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit f3606c0

Please sign in to comment.