diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-08-30 19:31:05 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-31 10:19:11 +0000 |
commit | 3839c00ae2f132b115ffabec500ddba2a536527e (patch) | |
tree | 93e57296f79378d949546c8354d6dd2f5a207b5a /cmd/podman/push.go | |
parent | 82a6b373a59b82532263b19c0a8abff9af4a96db (diff) | |
download | podman-3839c00ae2f132b115ffabec500ddba2a536527e.tar.gz podman-3839c00ae2f132b115ffabec500ddba2a536527e.tar.bz2 podman-3839c00ae2f132b115ffabec500ddba2a536527e.zip |
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 <vrothberg@suse.com>
Closes: #1379
Approved by: rhatdan
Diffstat (limited to 'cmd/podman/push.go')
-rw-r--r-- | cmd/podman/push.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go index 79758257a..d9aa2246b 100644 --- a/cmd/podman/push.go +++ b/cmd/podman/push.go @@ -67,12 +67,13 @@ var ( See podman-push(1) section "DESTINATION" for the expected format`) pushCommand = cli.Command{ - Name: "push", - Usage: "Push an image to a specified destination", - Description: pushDescription, - Flags: pushFlags, - Action: pushCmd, - ArgsUsage: "IMAGE DESTINATION", + Name: "push", + Usage: "Push an image to a specified destination", + Description: pushDescription, + Flags: pushFlags, + Action: pushCmd, + ArgsUsage: "IMAGE DESTINATION", + OnUsageError: usageErrorHandler, } ) |