fix: don't terminate if the target directory already exists

This commit is contained in:
Ulugbek 2022-08-08 16:28:52 +02:00 committed by Alexey Andreev
parent 10415b356e
commit f57af7631b

View File

@ -437,9 +437,9 @@ public class TeaVMTool {
vm.preserveType(className);
}
if (!targetDirectory.mkdirs()) {
if (!targetDirectory.exists() && !targetDirectory.mkdirs()) {
log.error("Target directory could not be created");
return;
System.exit(-1);
}
BuildTarget buildTarget = new DirectoryBuildTarget(targetDirectory);