From 47bef514914ec490d2f98e37727f4e5229fb311d Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Fri, 15 Jun 2012 07:57:47 -0400 Subject: [PATCH] tweak command list for help ordering --- main/Main.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/Main.scala b/main/Main.scala index 598fc7375..2ab01bf18 100644 --- a/main/Main.scala +++ b/main/Main.scala @@ -68,7 +68,7 @@ object BuiltinCommands def ConsoleCommands: Seq[Command] = Seq(ignore, exit, IvyConsole.command, act, nop) def ScriptCommands: Seq[Command] = Seq(ignore, exit, Script.command, act, nop) - def DefaultCommands: Seq[Command] = Seq(ignore, help, about, loadProject, settingsCommand, tasks, + def DefaultCommands: Seq[Command] = Seq(ignore, help, about, tasks, settingsCommand, loadProject, projects, project, reboot, read, history, set, sessionCommand, inspect, loadProjectImpl, loadFailed, Cross.crossBuild, Cross.switchVersion, setOnFailure, clearOnFailure, ifLast, multi, shell, continuous, eval, alias, append, last, lastGrep, boot, nop, call, exit, act) def DefaultBootCommands: Seq[String] = LoadProject :: (IfLast + " " + Shell) :: Nil