Skip to content

Commit 2d7823a

Browse files
authored
fix issue with universal output short form clobbering the dump option (#7894)
1 parent c5ee552 commit 2d7823a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/test-proxy/Azure.Sdk.Tools.TestProxy/CommandOptions/OptionsGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static RootCommand GenerateCommandLineOptions(Func<DefaultOptions, Task>
5353
name: "--universalOutput",
5454
description: "Flag; Redirect all logs to stdout, including what would normally be showing up on stderr.",
5555
getDefaultValue: () => false);
56-
dumpOption.AddAlias("-u");
56+
universalOption.AddAlias("-u");
5757

5858

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

0 commit comments

Comments
 (0)