Skip to content

Commit 9a52f43

Browse files
committed
Fix duplicate -c option conflict by removing shorthand from --config-file
Remove -c shorthand from --config-file to avoid conflict with --culture in language commands. The --culture option was defined first and should retain the -c shorthand for backward compatibility.
1 parent 77158f2 commit 9a52f43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Commands/BaseCommandSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class BaseCommandSettings : CommandSettings
3434
[Description("Path to the Resources folder (default: current directory)")]
3535
public string? ResourcePath { get; set; }
3636

37-
[CommandOption("-c|--config-file <PATH>")]
37+
[CommandOption("--config-file <PATH>")]
3838
[Description("Path to configuration file (default: lrm.json in resource path)")]
3939
public string? ConfigFilePath { get; set; }
4040

0 commit comments

Comments
 (0)