From 3839c00ae2f132b115ffabec500ddba2a536527e Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 30 Aug 2018 19:31:05 +0200 Subject: don't print help message for usage errors Don't print potentially verbose help messages in case of usage errors, but print only the usage error followed by a pointer to the command's help. This aligns with Docker. ``` $ podman run -h flag needs an argument: -h See 'podman run --help'. ``` Signed-off-by: Valentin Rothberg Closes: #1379 Approved by: rhatdan --- cmd/podman/rm.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman/rm.go') diff --git a/cmd/podman/rm.go b/cmd/podman/rm.go index 1d580ac7e..eb9f1b170 100644 --- a/cmd/podman/rm.go +++ b/cmd/podman/rm.go @@ -35,6 +35,7 @@ Running containers will not be removed without the -f option. Action: rmCmd, ArgsUsage: "", UseShortOptionHandling: true, + OnUsageError: usageErrorHandler, } ) -- cgit v1.2.3-54-g00ecf