diff --git a/pkg/client/uninstall.go b/pkg/client/uninstall.go index 81e3c6373..d6a23702b 100644 --- a/pkg/client/uninstall.go +++ b/pkg/client/uninstall.go @@ -25,6 +25,6 @@ import ( // Returns the string output received from the operation, and an error if the // command failed. func Uninstall(runner kubectl.Runner) (string, error) { - o, err := runner.Delete("dm", "Namespace") + o, err := runner.Delete("helm", "Namespace") return string(o), err }