diff options
author | baude <bbaude@redhat.com> | 2019-02-25 08:54:11 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-25 08:54:11 -0600 |
commit | 06cbf60d41fd3b538840ddb5f341d2f327cb2e8a (patch) | |
tree | 03ea3965bcb621d7217c48ee73f304fcf350653d /cmd/podman/commands.go | |
parent | 9e70411ffc24732049e133c83873f7834edf7c0a (diff) | |
download | podman-06cbf60d41fd3b538840ddb5f341d2f327cb2e8a.tar.gz podman-06cbf60d41fd3b538840ddb5f341d2f327cb2e8a.tar.bz2 podman-06cbf60d41fd3b538840ddb5f341d2f327cb2e8a.zip |
remove duplicate commands in main
kube was erronously being added as main subcommand multiple
times. it should not be a subcommand as it should live under
either play or generate.
also removing the addition of the volume command from the commands.go
to eliminate a duplicate.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands.go')
-rw-r--r-- | cmd/podman/commands.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index fef5f1763..53aa62eb9 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -17,7 +17,6 @@ func getMainCommands() []*cobra.Command { _diffCommand, _execCommand, _generateCommand, - _containerKubeCommand, _playCommand, _psCommand, _loginCommand, @@ -39,7 +38,6 @@ func getMainCommands() []*cobra.Command { _topCommand, _umountCommand, _unpauseCommand, - volumeCommand.Command, _waitCommand, } |