summaryrefslogtreecommitdiff
path: root/cmd/podman/inspect
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-09-15 19:58:19 +0200
committerGitHub <noreply@github.com>2020-09-15 19:58:19 +0200
commite7af517914600a97fac4e0341bb701aa178fbbb5 (patch)
tree4b34d10a5afe3a268967a696dfb885868608e09b /cmd/podman/inspect
parent46280d6aba13af7a0b8173adb96c54afdd560da7 (diff)
parent2583948f72a05cf38dc9f0c4ec1feef64ab9c9af (diff)
downloadpodman-e7af517914600a97fac4e0341bb701aa178fbbb5.tar.gz
podman-e7af517914600a97fac4e0341bb701aa178fbbb5.tar.bz2
podman-e7af517914600a97fac4e0341bb701aa178fbbb5.zip
Merge pull request #7633 from edsantiago/minus_l_with_other_args
Usability: prevent "-l" with arguments
Diffstat (limited to 'cmd/podman/inspect')
-rw-r--r--cmd/podman/inspect/inspect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/inspect/inspect.go b/cmd/podman/inspect/inspect.go
index 13c6544bb..f29527412 100644
--- a/cmd/podman/inspect/inspect.go
+++ b/cmd/podman/inspect/inspect.go
@@ -93,7 +93,7 @@ func (i *inspector) inspect(namesOrIDs []string) error {
tmpType := i.options.Type
if i.options.Latest {
if len(namesOrIDs) > 0 {
- return errors.New("latest and containers are not allowed")
+ return errors.New("--latest and containers cannot be used together")
}
tmpType = ContainerType // -l works with --type=all
}