diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-04-28 14:15:39 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-04-28 14:15:39 +0200 |
commit | e76c8527dcc8f526fdc8b50540a1aeb05f7eb70a (patch) | |
tree | cc31316b1b762866da28632dc167aeff89254cb2 | |
parent | ebf041652e93487b8afbac2bc4d9031d8547d866 (diff) | |
download | podman-e76c8527dcc8f526fdc8b50540a1aeb05f7eb70a.tar.gz podman-e76c8527dcc8f526fdc8b50540a1aeb05f7eb70a.tar.bz2 podman-e76c8527dcc8f526fdc8b50540a1aeb05f7eb70a.zip |
cmd: set correct parent for container exec
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-rw-r--r-- | cmd/podman/containers/exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/containers/exec.go b/cmd/podman/containers/exec.go index 3749c934a..2bff8ae33 100644 --- a/cmd/podman/containers/exec.go +++ b/cmd/podman/containers/exec.go @@ -70,7 +70,7 @@ func init() { registry.Commands = append(registry.Commands, registry.CliCommand{ Mode: []entities.EngineMode{entities.ABIMode}, Command: containerExecCommand, - Parent: containerCommitCommand, + Parent: containerCmd, }) containerExecFlags := containerExecCommand.Flags() |