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/create.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman/create.go') diff --git a/cmd/podman/create.go b/cmd/podman/create.go index 6b5151c1b..209064eff 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -52,6 +52,7 @@ var createCommand = cli.Command{ HideHelp: true, SkipArgReorder: true, UseShortOptionHandling: true, + OnUsageError: usageErrorHandler, } func createCmd(c *cli.Context) error { -- cgit v1.2.3-54-g00ecf