summaryrefslogtreecommitdiff
path: root/cmd/podman/manifest/inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-25 08:33:39 -0400
committerGitHub <noreply@github.com>2020-06-25 08:33:39 -0400
commitf8036c548c0a6d34cc063949cf5f9add22409d9d (patch)
tree48d84e34aee191cf803f14ef48df81b08eff271e /cmd/podman/manifest/inspect.go
parentcd36499d10a21ef1429d7ce84d845d8627ebcf6e (diff)
parentc6090c290e1eb8b60148a026773c5f8cce6eb435 (diff)
downloadpodman-f8036c548c0a6d34cc063949cf5f9add22409d9d.tar.gz
podman-f8036c548c0a6d34cc063949cf5f9add22409d9d.tar.bz2
podman-f8036c548c0a6d34cc063949cf5f9add22409d9d.zip
Merge pull request #6754 from edsantiago/man_page_xref
Docs: consistency between man / --help
Diffstat (limited to 'cmd/podman/manifest/inspect.go')
-rw-r--r--cmd/podman/manifest/inspect.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/manifest/inspect.go b/cmd/podman/manifest/inspect.go
index 5112aa5b2..861f4be4f 100644
--- a/cmd/podman/manifest/inspect.go
+++ b/cmd/podman/manifest/inspect.go
@@ -12,12 +12,13 @@ import (
var (
inspectCmd = &cobra.Command{
- Use: "inspect [flags] IMAGE",
- Short: "Display the contents of a manifest list or image index",
- Long: "Display the contents of a manifest list or image index.",
- RunE: inspect,
- Example: "podman manifest inspect localhost/list",
- Args: cobra.ExactArgs(1),
+ Use: "inspect IMAGE",
+ Short: "Display the contents of a manifest list or image index",
+ Long: "Display the contents of a manifest list or image index.",
+ RunE: inspect,
+ Example: "podman manifest inspect localhost/list",
+ Args: cobra.ExactArgs(1),
+ DisableFlagsInUseLine: true,
}
)