diff options
author | Qi Wang <qiwan@redhat.com> | 2018-10-09 16:06:45 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2018-10-11 13:17:14 -0400 |
commit | d73600626d20d1c022610b5fc39eb35606bb3998 (patch) | |
tree | b1127660963fad0114bba4a9f61d77e800092095 /cmd/podman/import.go | |
parent | b5f4bb15a5569ba6cf3517c3c979c75ad205ada5 (diff) | |
download | podman-d73600626d20d1c022610b5fc39eb35606bb3998.tar.gz podman-d73600626d20d1c022610b5fc39eb35606bb3998.tar.bz2 podman-d73600626d20d1c022610b5fc39eb35606bb3998.zip |
Sort all command flags
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'cmd/podman/import.go')
-rw-r--r-- | cmd/podman/import.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/import.go b/cmd/podman/import.go index c663e7128..be516e4fa 100644 --- a/cmd/podman/import.go +++ b/cmd/podman/import.go @@ -39,7 +39,7 @@ var ( Name: "import", Usage: "Import a tarball to create a filesystem image", Description: importDescription, - Flags: importFlags, + Flags: sortFlags(importFlags), Action: importCmd, ArgsUsage: "TARBALL [REFERENCE]", OnUsageError: usageErrorHandler, |