mirror of
https://github.com/containers/podman.git
synced 2025-08-03 01:37:51 +08:00
Exec: No arg reorder
Do not re-order the args for exec. Like run, it is very possible that a user will pass a -something in their command and this currently does not work. Signed-off-by: baude <bbaude@redhat.com> Closes: #168 Approved by: baude
This commit is contained in:
@ -35,12 +35,13 @@ var (
|
||||
`
|
||||
|
||||
execCommand = cli.Command{
|
||||
Name: "exec",
|
||||
Usage: "Run a process in a running container",
|
||||
Description: execDescription,
|
||||
Flags: execFlags,
|
||||
Action: execCmd,
|
||||
ArgsUsage: "CONTAINER-NAME",
|
||||
Name: "exec",
|
||||
Usage: "Run a process in a running container",
|
||||
Description: execDescription,
|
||||
Flags: execFlags,
|
||||
Action: execCmd,
|
||||
ArgsUsage: "CONTAINER-NAME",
|
||||
SkipArgReorder: true,
|
||||
}
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user