From ada13a0cce29003f1b63f7cd0dd7352f33349dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 23 Nov 2023 15:27:36 -0500 Subject: [PATCH] fix: k3d branding (#1926) --- internal/common/common.go | 2 +- internal/launch/cmd.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/common/common.go b/internal/common/common.go index 75c425ef3..cbb53edb3 100644 --- a/internal/common/common.go +++ b/internal/common/common.go @@ -175,7 +175,7 @@ func Destroy(cmd *cobra.Command, args []string) error { successMessage := ` ### -#### :tada: Success` + "`Your K3D kubefirst platform has been destroyed.`" + ` +#### :tada: Success` + "`Your k3d kubefirst platform has been destroyed.`" + ` ### :blue_book: To delete a management cluster please see documentation: https://docs.kubefirst.io/` + cloudProvider + `/deprovision diff --git a/internal/launch/cmd.go b/internal/launch/cmd.go index e32720840..774da91e4 100644 --- a/internal/launch/cmd.go +++ b/internal/launch/cmd.go @@ -616,7 +616,7 @@ func Down(inCluster bool) { if !inCluster { successMsg := ` ### -#### :tada: Success` + "`Your K3D kubefirst platform has been destroyed.`" +#### :tada: Success` + "`Your k3d kubefirst platform has been destroyed.`" progress.Success(successMsg) } }