Skip to content

Commit 29f192f

Browse files
committed
empty outputDirectory fix
1 parent 55e02d1 commit 29f192f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MainClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ private static void RegularParametersParsing(string[] args)
504504
{
505505
if (parseInput.RawFilePath != null)
506506
{
507-
parseInput.OutputDirectory = Path.GetDirectoryName(parseInput.RawFilePath);
507+
parseInput.OutputDirectory = Path.GetDirectoryName(Path.GetFullPath(parseInput.RawFilePath));
508508
}
509509
else if (parseInput.RawDirectoryPath != null)
510510
{

0 commit comments

Comments
 (0)