diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-28 23:29:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 23:29:20 +0200 |
commit | bf4efc1953467907ae7d75d5f3ef3cd41505ee24 (patch) | |
tree | f6743d64621b126ff5e5f92c46fa4e56d279f26b /cmd/podman/volumes/list.go | |
parent | dcac908bbe879a8b0b453531252dddccf8690077 (diff) | |
parent | 517bc28360ba6417d5333720f03f010514862ec3 (diff) | |
download | podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.tar.gz podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.tar.bz2 podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.zip |
Merge pull request #6026 from baude/v2forcesystemtests
system tests must pass
Diffstat (limited to 'cmd/podman/volumes/list.go')
-rw-r--r-- | cmd/podman/volumes/list.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/volumes/list.go b/cmd/podman/volumes/list.go index 7f5a55b14..8cc6fb301 100644 --- a/cmd/podman/volumes/list.go +++ b/cmd/podman/volumes/list.go @@ -9,6 +9,7 @@ import ( "strings" "text/tabwriter" + "github.com/containers/libpod/cmd/podman/common" "github.com/containers/libpod/cmd/podman/registry" "github.com/containers/libpod/pkg/domain/entities" "github.com/pkg/errors" @@ -24,7 +25,7 @@ and the output format can be changed to JSON or a user specified Go template.` lsCommand = &cobra.Command{ Use: "ls", Aliases: []string{"list"}, - Args: cobra.NoArgs, + Args: common.NoArgs, Short: "List volumes", Long: volumeLsDescription, RunE: list, |