Skip to content

Commit

Permalink
Move more frequently used command up in UI help listing
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Apr 19, 2024
1 parent 1995fce commit 0f919a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions implement/pine/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ private static int MainLessDispose(
title = "Develop and learn:",
commands = new[]
{
makeCommand,
compileCommand,
interactiveCommand,
describeCommand,
elmTestRsCommand,
makeCommand,
}
},
}
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 0f919a7

Please sign in to comment.