Skip to content

Commit

Permalink
Merge pull request #14 from stephen-riley/more-tweaks
Browse files Browse the repository at this point in the history
tweak CLI handling to show errors
  • Loading branch information
michaeljon authored May 24, 2022
2 parents 462e3e3 + efcb7f3 commit f202ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utils/CliOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class CliOptions
[Option('f', "format", Required = true, HelpText = "Type of input file.")]
public ReaderType Format { get; set; }

[Option('m', "modules", Required = false, HelpText = "Space-separated list of modules to run, or 'all'.")]
[Option('m', "modules", Required = false, Default = new string[] { "all" }, HelpText = "Space-separated list of modules to run, or 'all'.")]
public IEnumerable<string> ModuleNames { get; set; } = Array.Empty<string>();

[Option('l', "read-limit", Required = false, HelpText = "Limit the number of reads processed")]
Expand Down

0 comments on commit f202ab4

Please sign in to comment.