From 534d5507d97dafdd5cf94f659ea3d1fc6ac18169 Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Tue, 27 Nov 2018 23:38:56 +0600 Subject: [PATCH] Update cmd/helm/create.go Co-Authored-By: a8uhnf Signed-off-by: hanif --- cmd/helm/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/create.go b/cmd/helm/create.go index afb614027..0d278c8b5 100644 --- a/cmd/helm/create.go +++ b/cmd/helm/create.go @@ -76,7 +76,7 @@ func newCreateCmd(out io.Writer) *cobra.Command { return errors.New("the name of the new chart is required") } if len(args) > 1 { - return errors.New("command 'create' doesn't support multiple helm-chart creation at a time") + return errors.New("command 'create' doesn't support multiple arguments") } cc.name = args[0] return cc.run()