Help message should prioritize gateway after server (#5153)

Currently gateway is listed as a command after {version, update}
which is incorrect, fix it.
This commit is contained in:
Harshavardhana 2017-11-08 13:38:53 -08:00 committed by Dee Koder
parent ca6b4773ed
commit 16ecaac4fc

View File

@ -98,9 +98,9 @@ func newApp(name string) *cli.App {
// Register all commands.
registerCommand(serverCmd)
registerCommand(versionCmd)
registerCommand(updateCmd)
registerCommand(gatewayCmd)
registerCommand(updateCmd)
registerCommand(versionCmd)
// Set up app.
cli.HelpFlag = cli.BoolFlag{