From 14cae778aa972d0fd1083ab9fe46871e79a169ce Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Fri, 8 Sep 2017 17:24:26 +0100 Subject: [PATCH] main: Sort list of cli commands Sort the list of supported sub-commands the runtime supports. Signed-off-by: James O. D. Hunt --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 3a59cf1a..d47d3ef0 100644 --- a/main.go +++ b/main.go @@ -97,15 +97,15 @@ var runtimeFlags = []cli.Flag{ // commands. var runtimeCommands = []cli.Command{ checkCLICommand, - envCLICommand, createCLICommand, deleteCLICommand, + envCLICommand, execCLICommand, killCLICommand, listCLICommand, - runCLICommand, pauseCLICommand, resumeCLICommand, + runCLICommand, startCLICommand, stateCLICommand, versionCLICommand,