summaryrefslogtreecommitdiff
path: root/cmd/podman/export.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/export.go')
-rw-r--r--cmd/podman/export.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/export.go b/cmd/podman/export.go
index 20faac7d8..dd73c8663 100644
--- a/cmd/podman/export.go
+++ b/cmd/podman/export.go
@@ -20,12 +20,13 @@ var (
exportDescription = "Exports container's filesystem contents as a tar archive" +
" and saves it on the local machine."
exportCommand = cli.Command{
- Name: "export",
- Usage: "Export container's filesystem contents as a tar archive",
- Description: exportDescription,
- Flags: exportFlags,
- Action: exportCmd,
- ArgsUsage: "CONTAINER",
+ Name: "export",
+ Usage: "Export container's filesystem contents as a tar archive",
+ Description: exportDescription,
+ Flags: exportFlags,
+ Action: exportCmd,
+ ArgsUsage: "CONTAINER",
+ OnUsageError: usageErrorHandler,
}
)