From 4e0575a1568405fb5e320856e62223749fad0cb2 Mon Sep 17 00:00:00 2001 From: James Cornman Date: Tue, 20 May 2025 11:00:09 -0500 Subject: [PATCH] update text prompting user to update coolify --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index c7dfcdb..eb17212 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -256,7 +256,7 @@ func CheckLatestVersionOfCli() (string, error) { sort.Sort(compareVersion.Collection(versions)) latestVersion := versions[len(versions)-1].String() if latestVersion != CliVersion { - fmt.Printf("There is a new version of Coolify CLI available.\nPlease update with 'coolify --update'.\n\n") + fmt.Printf("There is a new version of Coolify CLI available.\nPlease update with 'coolify update'.\n\n") } return latestVersion, nil