From 7bc56e74f9c71f8827b3a9425ff296a4b163cb11 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Tue, 16 Aug 2016 19:56:10 -0700 Subject: [PATCH] fix(cmd): s/supress/suppress/ Suppress is spelled wrong. Matt did it. --- cmd/helm/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 81c7388c9..555185cc2 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -75,7 +75,7 @@ func (i *initCmd) run() error { if !strings.Contains(err.Error(), `"tiller-deploy" already exists`) { return fmt.Errorf("error installing: %s", err) } - fmt.Fprintln(i.out, "Warning: Tiller is already installed in the cluster. (Use --client-only to supress this message.)") + fmt.Fprintln(i.out, "Warning: Tiller is already installed in the cluster. (Use --client-only to suppress this message.)") } else { fmt.Fprintln(i.out, "\nTiller (the helm server side component) has been installed into your Kubernetes Cluster.") }