mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 23:22:46 +00:00
CommandLineParser: Case insensitive
This commit is contained in:
parent
b04ee56612
commit
e7098d01c5
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ namespace Jackett.Server
|
|||
{
|
||||
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
||||
|
||||
var commandLineParser = new Parser();
|
||||
var commandLineParser = new Parser(settings => settings.CaseSensitive = false);
|
||||
var optionsResult = commandLineParser.ParseArguments<ConsoleOptions>(args);
|
||||
var runtimeDictionary = new Dictionary<string, string>();
|
||||
ConsoleOptions consoleOptions = new ConsoleOptions();
|
||||
|
|
Loading…
Reference in a new issue