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/info.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/info.go')
-rw-r--r-- | cmd/podman/info.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/info.go b/cmd/podman/info.go index 927bf57be..563e63ba3 100644 --- a/cmd/podman/info.go +++ b/cmd/podman/info.go @@ -16,7 +16,7 @@ var ( Name: "info", Usage: infoDescription, Description: `Information display here pertain to the host, current storage stats, and build of podman. Useful for the user and when reporting issues.`, - Flags: infoFlags, + Flags: sortFlags(infoFlags), Action: infoCmd, ArgsUsage: "", OnUsageError: usageErrorHandler, |