From 51b8d0c8ce2c41edcf3c7129941a7126db55747f Mon Sep 17 00:00:00 2001 From: Xunzhuo Date: Wed, 11 Jan 2023 14:47:57 +0800 Subject: [PATCH] fix: errorMsg when uninstall vela (#5304) Signed-off-by: bitliu Signed-off-by: bitliu --- references/cli/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/references/cli/uninstall.go b/references/cli/uninstall.go index 05333de41..84c7cf5b0 100644 --- a/references/cli/uninstall.go +++ b/references/cli/uninstall.go @@ -80,7 +80,7 @@ func NewUnInstallCommand(c common.Args, order string, ioStreams util.IOStreams) return errors.Wrapf(err, "cannot check installed addon") } if len(addons) != 0 { - return fmt.Errorf("these addons have been eanbled :%v, please guarantee there is no application using these addons and use `vela uninstall -f` uninstall include addon ", addons) + return fmt.Errorf("these addons have been enabled :%v, please guarantee there is no application using these addons and use `vela uninstall -f` uninstall include addon ", addons) } }