Skip to content

Commit

Permalink
uninstall: more clearly messages (#2488)
Browse files Browse the repository at this point in the history
  • Loading branch information
makocchi-git authored Feb 6, 2025
1 parent 828fe8c commit f4be712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit f4be712

Please sign in to comment.