Skip to content

Commit

Permalink
fix: invert conditional statement
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Jul 26, 2021
1 parent 3c24ea7 commit ea340d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private boolean setupNdkDirectory() {
@Override
public Boolean call() {
File outFile = new File(NativeInterface.getNativeReportPath());
return !outFile.exists() && !outFile.mkdirs();
return outFile.exists() || outFile.mkdirs();
}
}).get();
} catch (Throwable exc) {
Expand Down

0 comments on commit ea340d9

Please sign in to comment.