From a7bf241095995b1e4dfb809bd51d0dce55d4b67b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 29 Jun 2023 18:27:41 -0400 Subject: [PATCH] fix: cluster list command information (#1666) --- internal/launch/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/launch/cmd.go b/internal/launch/cmd.go index e210cd1d1..591d4a171 100644 --- a/internal/launch/cmd.go +++ b/internal/launch/cmd.go @@ -706,5 +706,5 @@ func DeleteCluster(managedClusterName string) { os.Exit(0) } - fmt.Printf("Submitted request to delete cluster %s: %s - follow progress with `kubefirst launch list-clusters`", managedClusterName, objMap["message"]) + fmt.Printf("Submitted request to delete cluster %s: %s - follow progress with `kubefirst launch cluster list`", managedClusterName, objMap["message"]) }