We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb2cb2 commit 36fad3bCopy full SHA for 36fad3b
src/ScriptCs/Argument/ArgumentParser.cs
@@ -27,7 +27,7 @@ public ScriptCsArgs Parse(string[] args)
27
commandArgs = Args.Parse<ScriptCsArgs>(args);
28
29
//if there is only 1 arg and it is a loglevel, it's also REPL
30
- if(args.Length == 2 && args.Any(x => x.ToLowerInvariant() == "-log"))
+ if(args.Length == 2 && args.Any(x => x.ToLowerInvariant() == "-loglevel"))
31
{
32
commandArgs.Repl = true;
33
}
0 commit comments