We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f8e37 commit 92e055fCopy full SHA for 92e055f
1 file changed
MainClass.cs
@@ -535,7 +535,7 @@ private static void RegularParametersParsing(string[] args)
535
}
536
537
538
- if (parseInput.OutputDirectory != null && !Directory.Exists(parseInput.OutputDirectory))
+ if (!parseInput.OutputDirectory.IsNullOrEmpty() && !Directory.Exists(parseInput.OutputDirectory))
539
{
540
throw new OptionException(
541
"specify a valid output directory",
0 commit comments