mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-02-17 11:19:48 +08:00
fix: don't terminate if the target directory already exists
This commit is contained in:
parent
10415b356e
commit
f57af7631b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user