Update Base.java

This commit is contained in:
Stef Tervelde
2024-11-14 23:46:49 +01:00
parent fc463efed9
commit b42181f5c4

View File

@@ -1214,6 +1214,7 @@ public class Base {
private Editor openSketchBundle(String path) {
File zipFile = new File(path);
try {
untitledFolder.mkdirs();
File destFolder = File.createTempFile("zip", "tmp", untitledFolder);
if (!destFolder.delete() || !destFolder.mkdirs()) {
// Hard to imagine why this would happen, but...