diff --git a/implement/pine/Program.cs b/implement/pine/Program.cs index d687ca9d..be1c68b9 100644 --- a/implement/pine/Program.cs +++ b/implement/pine/Program.cs @@ -153,11 +153,11 @@ private static int MainLessDispose( title = "Develop and learn:", commands = new[] { + makeCommand, compileCommand, interactiveCommand, describeCommand, elmTestRsCommand, - makeCommand, } }, } @@ -594,7 +594,7 @@ private static CommandLineApplication AddTruncateProcessHistoryCommand(CommandLi private static CommandLineApplication AddCompileCommand(CommandLineApplication app) => app.Command("compile", compileCommand => { - compileCommand.Description = "Compile app source code the same way as would be done when deploying."; + compileCommand.Description = "Compile app source code the same way as would be done when deploying a web service."; compileCommand.UnrecognizedArgumentHandling = UnrecognizedArgumentHandling.Throw; var sourceArgument = compileCommand.Argument("source", "Path to the app program code to compile.").IsRequired(allowEmptyStrings: false);