diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-22 03:42:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 03:42:11 -0700 |
commit | 18f2328264f4dbb9a4c38ece7baae232fd391abf (patch) | |
tree | 090528f32e2296551fe13286d1f985ac3a954803 /cmd/podman/commands.go | |
parent | 34f902572d15f4482aedae3859f0c83c56bd8437 (diff) | |
parent | e06d0fe5e54bb223701385b08703bf229dc4aa7e (diff) | |
download | podman-18f2328264f4dbb9a4c38ece7baae232fd391abf.tar.gz podman-18f2328264f4dbb9a4c38ece7baae232fd391abf.tar.bz2 podman-18f2328264f4dbb9a4c38ece7baae232fd391abf.zip |
Merge pull request #3872 from baude/3861
podman-remote: cp crashes
Diffstat (limited to 'cmd/podman/commands.go')
-rw-r--r-- | cmd/podman/commands.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index e23918a5b..77c76d1b7 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -11,6 +11,7 @@ const remoteclient = false // Commands that the local client implements func getMainCommands() []*cobra.Command { rootCommands := []*cobra.Command{ + _cpCommand, _playCommand, _loginCommand, _logoutCommand, @@ -39,6 +40,7 @@ func getImageSubCommands() []*cobra.Command { func getContainerSubCommands() []*cobra.Command { return []*cobra.Command{ + _cpCommand, _cleanupCommand, _mountCommand, _refreshCommand, |