mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
do not recreate directory
This commit is contained in:
+1
-1
@@ -177,7 +177,7 @@ public class AndroidApkBuilder {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!dstDir.mkdirs()) {
|
||||
if (!dstDir.exists() && !dstDir.mkdirs()) {
|
||||
map.get(ERROR).add("Cannot create directory: " + FileUtil.toSystemDependentName(dstDir.getPath()));
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user