diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-16 06:25:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 06:25:41 -0700 |
commit | 713839cf8393bdb96c739cb745e403cf2a3a1327 (patch) | |
tree | 5ae1609e0372f6cd4d1b87df93fa0358c47900eb /cmd/podman/volume_ls.go | |
parent | c1e2b583c82261639d6927c9b2a4f19d87a166a7 (diff) | |
parent | 6fb0a706af438778dd372d4b05b417fb30a45965 (diff) | |
download | podman-713839cf8393bdb96c739cb745e403cf2a3a1327.tar.gz podman-713839cf8393bdb96c739cb745e403cf2a3a1327.tar.bz2 podman-713839cf8393bdb96c739cb745e403cf2a3a1327.zip |
Merge pull request #2946 from baude/segs
Fix segfaults attribute to missing options
Diffstat (limited to 'cmd/podman/volume_ls.go')
-rw-r--r-- | cmd/podman/volume_ls.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/volume_ls.go b/cmd/podman/volume_ls.go index 2f35462a3..b9ab89196 100644 --- a/cmd/podman/volume_ls.go +++ b/cmd/podman/volume_ls.go @@ -54,6 +54,7 @@ and the output format can be changed to JSON or a user specified Go template.` RunE: func(cmd *cobra.Command, args []string) error { volumeLsCommand.InputArgs = args volumeLsCommand.GlobalFlags = MainGlobalOpts + volumeLsCommand.Remote = remoteclient return volumeLsCmd(&volumeLsCommand) }, } |