summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-27 20:34:39 +0200
committerGitHub <noreply@github.com>2020-04-27 20:34:39 +0200
commitccf009d22e45e9a517b65619d6d46a8d40cb3328 (patch)
tree4372cc8aae2393e13845625ac7a03e837defdc14 /cmd/podman
parente90112a58c820fc20bf56727a3d1c19759ceed3e (diff)
parent6db081fc5e38df6e757da0af8e4e3c74eaa720f6 (diff)
downloadpodman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.tar.gz
podman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.tar.bz2
podman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.zip
Merge pull request #6001 from baude/v2intload
enable load integration tests
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/images/load.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/images/load.go b/cmd/podman/images/load.go
index 23c657b59..f49f95002 100644
--- a/cmd/podman/images/load.go
+++ b/cmd/podman/images/load.go
@@ -6,6 +6,7 @@ import (
"io"
"io/ioutil"
"os"
+ "strings"
"github.com/containers/image/v5/docker/reference"
"github.com/containers/libpod/cmd/podman/parse"
@@ -89,6 +90,6 @@ func load(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
- fmt.Println("Loaded image: " + response.Name)
+ fmt.Println("Loaded image(s): " + strings.Join(response.Names, ","))
return nil
}