mirror of https://github.com/containers/podman.git
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
This commit is contained in:
parent
84e3bdceda
commit
b8dca1874d
|
@ -129,6 +129,7 @@ var createCommand = cli.Command{
|
|||
Flags: createFlags,
|
||||
Action: createCmd,
|
||||
ArgsUsage: "IMAGE [COMMAND [ARG...]]",
|
||||
SkipArgReorder: true,
|
||||
}
|
||||
|
||||
func createCmd(c *cli.Context) error {
|
||||
|
|
|
@ -18,6 +18,7 @@ var runCommand = cli.Command{
|
|||
Flags: createFlags,
|
||||
Action: runCmd,
|
||||
ArgsUsage: "IMAGE [COMMAND [ARG...]]",
|
||||
SkipArgReorder: true,
|
||||
}
|
||||
|
||||
func runCmd(c *cli.Context) error {
|
||||
|
|
Loading…
Reference in New Issue