Skip to content

Commit 7c2bbd9

Browse files
committed
fixing an issue with the basic addon-filestructure missing
1 parent 339b88a commit 7c2bbd9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
/manifest.mf
66
/bin
77
/logs
8-
/interface
8+
/Interface
99
/WAR.exe
1010
/RoRLauncher.exe
11-
/idrinth.xml
11+
/idrinth.xml
12+
/AddonClient.jar

src/net/codejava/utility/Unzip.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Unzip {
3232
public void unzip(java.io.InputStream zipFilePath, String destDirectory) throws IOException {
3333
File destDir = new File(destDirectory);
3434
if (!destDir.exists()) {
35-
destDir.mkdir();
35+
destDir.mkdirs();
3636
}
3737
ZipInputStream zipIn = new ZipInputStream(zipFilePath);
3838
ZipEntry entry = zipIn.getNextEntry();

0 commit comments

Comments
 (0)