diff options
Diffstat (limited to 'cmd/podman/mount.go')
-rw-r--r-- | cmd/podman/mount.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/mount.go b/cmd/podman/mount.go index 6cda9dbd3..fbaf2baf1 100644 --- a/cmd/podman/mount.go +++ b/cmd/podman/mount.go @@ -31,12 +31,13 @@ var ( }, } mountCommand = cli.Command{ - Name: "mount", - Usage: "Mount a working container's root filesystem", - Description: mountDescription, - Action: mountCmd, - ArgsUsage: "[CONTAINER-NAME-OR-ID [...]]", - Flags: mountFlags, + Name: "mount", + Usage: "Mount a working container's root filesystem", + Description: mountDescription, + Action: mountCmd, + ArgsUsage: "[CONTAINER-NAME-OR-ID [...]]", + Flags: mountFlags, + OnUsageError: usageErrorHandler, } ) |