diff options
Diffstat (limited to 'cmd/podman/info.go')
-rw-r--r-- | cmd/podman/info.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/info.go b/cmd/podman/info.go index cd66943a4..927bf57be 100644 --- a/cmd/podman/info.go +++ b/cmd/podman/info.go @@ -13,12 +13,13 @@ import ( var ( infoDescription = "Display podman system information" infoCommand = cli.Command{ - Name: "info", - Usage: infoDescription, - Description: `Information display here pertain to the host, current storage stats, and build of podman. Useful for the user and when reporting issues.`, - Flags: infoFlags, - Action: infoCmd, - ArgsUsage: "", + Name: "info", + Usage: infoDescription, + Description: `Information display here pertain to the host, current storage stats, and build of podman. Useful for the user and when reporting issues.`, + Flags: infoFlags, + Action: infoCmd, + ArgsUsage: "", + OnUsageError: usageErrorHandler, } infoFlags = []cli.Flag{ cli.BoolFlag{ |