Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Program.cs
  • Loading branch information
hoyosjs authored Jun 28, 2022
commit ef60af09a319047cd01761310f5eba79eac9c00a
2 changes: 1 addition & 1 deletion src/Tools/dotnet-dump/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private static Argument DumpPath() =>
private static Option RunCommand() =>
new Option(
aliases: new[] { "-c", "--command" },
description: "Runs the command on start. Multiple instances of this parameter can be used in an invocation to chain commands. They will get run in the order that they are provided on the commandline.")
description: "Runs the command on start. Multiple instances of this parameter can be used in an invocation to chain commands. Commands will get run in the order that they are provided on the commandline.")
{
Argument = new Argument<string[]>(name: "command", getDefaultValue: () => Array.Empty<string>()) { Arity = ArgumentArity.ZeroOrMore }
};
Expand Down