Commit 865c1d3c authored by Abu Hanifa's avatar Abu Hanifa Committed by Matthew Fisher
Browse files

Error message if anyone try to create multiple helm chart at a time (#4952)


* error message for creating multiple helm chart at a time

Signed-off-by: default avatarhanif <abuhanifa@pathao.com>

* Update cmd/helm/create.go

Co-Authored-By: default avatara8uhnf <a8uhnf@users.noreply.github.com>
Signed-off-by: default avatarhanif <abuhanifa@pathao.com>
Showing with 3 additions and 0 deletions
+3 -0
......@@ -75,6 +75,9 @@ func newCreateCmd(out io.Writer) *cobra.Command {
if len(args) == 0 {
return errors.New("the name of the new chart is required")
}
if len(args) > 1 {
return errors.New("command 'create' doesn't support multiple arguments")
}
cc.name = args[0]
return cc.run()
},
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment