summaryrefslogtreecommitdiff
path: root/cmd/podman/volumes/list.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-17 13:20:36 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-17 18:57:40 -0500
commitc2a1138aecc2a0b3f60e3a61c0dfe18de3a47684 (patch)
tree8afc034f91192853d9461e83567a583e351d32ea /cmd/podman/volumes/list.go
parentbd8a0b08cdea5f15d6033b24038ba71aef1f8962 (diff)
downloadpodman-c2a1138aecc2a0b3f60e3a61c0dfe18de3a47684.tar.gz
podman-c2a1138aecc2a0b3f60e3a61c0dfe18de3a47684.tar.bz2
podman-c2a1138aecc2a0b3f60e3a61c0dfe18de3a47684.zip
enable integration testing
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/volumes/list.go')
-rw-r--r--cmd/podman/volumes/list.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podman/volumes/list.go b/cmd/podman/volumes/list.go
index fd89db01f..f75de6b4b 100644
--- a/cmd/podman/volumes/list.go
+++ b/cmd/podman/volumes/list.go
@@ -68,6 +68,9 @@ func list(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
+ if len(responses) < 1 {
+ return nil
+ }
// "\t" from the command line is not being recognized as a tab
// replacing the string "\t" to a tab character if the user passes in "\t"
cliOpts.Format = strings.Replace(cliOpts.Format, `\t`, "\t", -1)