Skip to content

Commit 0bc84f7

Browse files
committed
Remove shorthand options for --force-color
The two obvious options (`-c` and `-f`) are already used by other commands.
1 parent 3f0cc8c commit 0bc84f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SeqCli/Cli/Commands/PrintCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public PrintCommand(SeqCliOutputConfig outputConfig)
5757

5858
Options.Add("no-color", "Don't colorize text output", v => _noColor = true);
5959

60-
Options.Add("c|force-color",
60+
Options.Add("force-color",
6161
"Force redirected output to have ANSI color (unless `--no-color` is also specified)",
6262
v => _forceColor = true);
6363
}

src/SeqCli/Cli/Features/OutputFormatFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public override void Enable(OptionSet options)
6363

6464
options.Add("no-color", "Don't colorize text output", v => _noColor = true);
6565

66-
options.Add("c|force-color",
66+
options.Add("force-color",
6767
"Force redirected output to have ANSI color (unless `--no-color` is also specified)",
6868
v => _forceColor = true);
6969
}

0 commit comments

Comments
 (0)