Skip to content

Commit

Permalink
fix issue with universal output short form clobbering the dump option (
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored Mar 19, 2024
1 parent c5ee552 commit 2d7823a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static RootCommand GenerateCommandLineOptions(Func<DefaultOptions, Task>
name: "--universalOutput",
description: "Flag; Redirect all logs to stdout, including what would normally be showing up on stderr.",
getDefaultValue: () => false);
dumpOption.AddAlias("-u");
universalOption.AddAlias("-u");


var collectedArgs = new Argument<string[]>("args")
Expand Down

0 comments on commit 2d7823a

Please sign in to comment.