diff options
author | baude <bbaude@redhat.com> | 2017-11-07 13:41:25 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-11-08 21:49:15 +0000 |
commit | b8dca1874dfec01b1782f1308f26b58f315424cd (patch) | |
tree | 43753b4ab87bb9df942cf4cd2663f6c5ed84a0f1 /cmd/kpod/run.go | |
parent | 84e3bdceda8d4683c823f16dffaee57e2d861cdc (diff) | |
download | podman-b8dca1874dfec01b1782f1308f26b58f315424cd.tar.gz podman-b8dca1874dfec01b1782f1308f26b58f315424cd.tar.bz2 podman-b8dca1874dfec01b1782f1308f26b58f315424cd.zip |
Do not attempt to use command --args as cli flags
i.e. kpod run fedora python --version
Signed-off-by: baude <bbaude@redhat.com>
Closes: #33
Approved by: rhatdan
Diffstat (limited to 'cmd/kpod/run.go')
-rw-r--r-- | cmd/kpod/run.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/kpod/run.go b/cmd/kpod/run.go index 904977940..6b67b55cd 100644 --- a/cmd/kpod/run.go +++ b/cmd/kpod/run.go @@ -12,12 +12,13 @@ import ( var runDescription = "Runs a command in a new container from the given image" var runCommand = cli.Command{ - Name: "run", - Usage: "run a command in a new container", - Description: runDescription, - Flags: createFlags, - Action: runCmd, - ArgsUsage: "IMAGE [COMMAND [ARG...]]", + Name: "run", + Usage: "run a command in a new container", + Description: runDescription, + Flags: createFlags, + Action: runCmd, + ArgsUsage: "IMAGE [COMMAND [ARG...]]", + SkipArgReorder: true, } func runCmd(c *cli.Context) error { |