Skip to content

Commit

Permalink
fix #335
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed May 9, 2022
1 parent 331fc1e commit c91ea78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BBDown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public static async Task<int> Main(params string[] args)

var newArgsList = new List<string>();
var commandLineResult = rootCommand.Parse(args);
if (commandLineResult.CommandResult.Command.Name != "BBDown")
if (commandLineResult.CommandResult.Command.Name.ToLower() != "bbdown")
{
newArgsList.Add(commandLineResult.CommandResult.Command.Name);
return await rootCommand.InvokeAsync(newArgsList.ToArray());
Expand Down

0 comments on commit c91ea78

Please sign in to comment.