diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-03-07 16:44:39 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2019-03-08 07:06:50 -0500 |
commit | 181f327d57ab84918572b69d2a039c43a8d7b871 (patch) | |
tree | 8684876407aa37f6cd4de1734289161c7c070517 /cmd/podman/image.go | |
parent | 94e89fc6cac0ac67db9228967f0340b60235bed8 (diff) | |
download | podman-181f327d57ab84918572b69d2a039c43a8d7b871.tar.gz podman-181f327d57ab84918572b69d2a039c43a8d7b871.tar.bz2 podman-181f327d57ab84918572b69d2a039c43a8d7b871.zip |
More cleanup for failures on missing commands.
Currently in podman if a user specifies a command that does not exist
the tool shows the help information. This patch changes it to show
information like:
$ ./bin/podman foobar
Error: unrecognized command 'podman foobar'
Try 'podman --help' for more information.
$ ./bin/podman volume foobar
Error: unrecognized command `podman volume foobar`
Try 'podman volume --help' for more information.
$ ./bin/podman container foobar
Error: unrecognized command `podman container foobar`
Try 'podman container --help' for more information.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/image.go')
-rw-r--r-- | cmd/podman/image.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/image.go b/cmd/podman/image.go index 57be7fe14..52bac6ecb 100644 --- a/cmd/podman/image.go +++ b/cmd/podman/image.go @@ -14,6 +14,7 @@ var ( Use: "image", Short: "Manage images", Long: imageDescription, + RunE: commandRunE(), }, } imagesSubCommand cliconfig.ImagesValues |