Skip to content

Commit

Permalink
Fixed null-safety issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeRanDev committed Feb 9, 2024
1 parent e9de25f commit 593d87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reflaxe/output/OutputManager.hx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class OutputManager {
}
}

if(outputDir.length > 0) {
if(outputDir != null && outputDir.length > 0) {
ensureOutputDirExists();
}

Expand Down

0 comments on commit 593d87b

Please sign in to comment.