diff options
Diffstat (limited to 'cmd/podman/import.go')
-rw-r--r-- | cmd/podman/import.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/import.go b/cmd/podman/import.go index 4f7786c42..c663e7128 100644 --- a/cmd/podman/import.go +++ b/cmd/podman/import.go @@ -36,12 +36,13 @@ var ( Optionally tag the image. You can specify the instructions using the --change option. ` importCommand = cli.Command{ - Name: "import", - Usage: "Import a tarball to create a filesystem image", - Description: importDescription, - Flags: importFlags, - Action: importCmd, - ArgsUsage: "TARBALL [REFERENCE]", + Name: "import", + Usage: "Import a tarball to create a filesystem image", + Description: importDescription, + Flags: importFlags, + Action: importCmd, + ArgsUsage: "TARBALL [REFERENCE]", + OnUsageError: usageErrorHandler, } ) |