1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #29009 from yuexiao-wang/fix-secret-create

Fix the usage for secret create
This commit is contained in:
Vincent Demeester 2016-12-01 11:29:45 +01:00 committed by GitHub
commit 782f0ed73d

View file

@ -25,9 +25,9 @@ func newSecretCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
}
cmd := &cobra.Command{
Use: "create [OPTIONS] SECRET [SECRET...]",
Use: "create [OPTIONS] SECRET",
Short: "Create a secret using stdin as content",
Args: cli.RequiresMinArgs(1),
Args: cli.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
createOpts.name = args[0]
return runSecretCreate(dockerCli, createOpts)