From 1abc3ceb927e056ec00d02f7921fe22d2bb7aee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 29 Jun 2023 11:59:18 -0400 Subject: [PATCH] fix: manual k3d delete command (#1664) --- 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 757b2b8f1..e210cd1d1 100644 --- a/internal/launch/cmd.go +++ b/internal/launch/cmd.go @@ -240,7 +240,7 @@ func Up(additionalHelmFlags []string) { } else { log.Warn("Kubefirst console has already been deployed. To start over, run `kubefirst launch down` to completely remove the existing console.") log.Warnf("If you have manually removed %s, the k3d cluster must be manually removed by running the following command: ", dir) - log.Info(" k3d delete cluster kubefirst-console") + log.Info(" k3d cluster delete kubefirst-console") log.Warn("You will have to install the k3d utility if you do not have it installed if the directory shown above has been deleted.") os.Exit(1) }