diff options
Diffstat (limited to 'cmd/podman/diff.go')
-rw-r--r-- | cmd/podman/diff.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/diff.go b/cmd/podman/diff.go index f5a2d60ad..dc35ea5a3 100644 --- a/cmd/podman/diff.go +++ b/cmd/podman/diff.go @@ -48,12 +48,13 @@ var ( container or image will be compared to its parent layer`) diffCommand = cli.Command{ - Name: "diff", - Usage: "Inspect changes on container's file systems", - Description: diffDescription, - Flags: diffFlags, - Action: diffCmd, - ArgsUsage: "ID-NAME", + Name: "diff", + Usage: "Inspect changes on container's file systems", + Description: diffDescription, + Flags: diffFlags, + Action: diffCmd, + ArgsUsage: "ID-NAME", + OnUsageError: usageErrorHandler, } ) |