diff options
Diffstat (limited to 'cmd/podman/pull.go')
-rw-r--r-- | cmd/podman/pull.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go index f1666113b..902bd867c 100644 --- a/cmd/podman/pull.go +++ b/cmd/podman/pull.go @@ -51,12 +51,13 @@ An image can be pulled using its tag or digest. If a tag is not specified, the image with the 'latest' tag (if it exists) is pulled ` pullCommand = cli.Command{ - Name: "pull", - Usage: "Pull an image from a registry", - Description: pullDescription, - Flags: pullFlags, - Action: pullCmd, - ArgsUsage: "", + Name: "pull", + Usage: "Pull an image from a registry", + Description: pullDescription, + Flags: pullFlags, + Action: pullCmd, + ArgsUsage: "", + OnUsageError: usageErrorHandler, } ) |