From f4be7127a41d2c1a145bd5cd5673400fa4ae5bac Mon Sep 17 00:00:00 2001 From: makocchi Date: Thu, 6 Feb 2025 23:50:54 +0900 Subject: [PATCH] uninstall: more clearly messages (#2488) --- cmd/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/uninstall.go b/cmd/uninstall.go index 0b243bc6cc..51e3ee82e9 100644 --- a/cmd/uninstall.go +++ b/cmd/uninstall.go @@ -117,7 +117,7 @@ func removeComponents(env *environment.Environment, specs []string, all bool) er if !utils.IsExist(path) { return errors.Trace(fmt.Errorf("component `%s` is not installed, please check", spec)) } - fmt.Println(path) + fmt.Printf("Removing directory %s\n", path) if err := os.RemoveAll(path); err != nil { return errors.Trace(err) }