diff options
author | Ed Santiago <santiago@redhat.com> | 2019-03-14 14:19:20 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2019-03-16 08:09:35 -0600 |
commit | 8a570b2dd2679d56d88b6e6e86045aebee2371e1 (patch) | |
tree | d41ee1f690726b673e2508aa20651ebb1b4078bd /cmd | |
parent | 97fb49571828b9d206ff284ed18448f96ae877e9 (diff) | |
download | podman-8a570b2dd2679d56d88b6e6e86045aebee2371e1.tar.gz podman-8a570b2dd2679d56d88b6e6e86045aebee2371e1.tar.bz2 podman-8a570b2dd2679d56d88b6e6e86045aebee2371e1.zip |
podman image tree: fix usage message
Minor fix to Use message: add IMAGE argument. (I'm a stickler
for this because my zsh completion is self-generating, from
the --help messages).
Also, sort 'tree' before 'trust' in man page.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/tree.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/tree.go b/cmd/podman/tree.go index ebda18cdb..c56e35aef 100644 --- a/cmd/podman/tree.go +++ b/cmd/podman/tree.go @@ -23,7 +23,7 @@ var ( treeDescription = "Prints layer hierarchy of an image in a tree format" _treeCommand = &cobra.Command{ - Use: "tree", + Use: "tree [flags] IMAGE", Short: treeDescription, Long: treeDescription, RunE: func(cmd *cobra.Command, args []string) error { |