We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339b88a commit 7c2bbd9Copy full SHA for 7c2bbd9
.gitignore
@@ -5,7 +5,8 @@
5
/manifest.mf
6
/bin
7
/logs
8
-/interface
+/Interface
9
/WAR.exe
10
/RoRLauncher.exe
11
-/idrinth.xml
+/idrinth.xml
12
+/AddonClient.jar
src/net/codejava/utility/Unzip.java
@@ -32,7 +32,7 @@ public class Unzip {
32
public void unzip(java.io.InputStream zipFilePath, String destDirectory) throws IOException {
33
File destDir = new File(destDirectory);
34
if (!destDir.exists()) {
35
- destDir.mkdir();
+ destDir.mkdirs();
36
}
37
ZipInputStream zipIn = new ZipInputStream(zipFilePath);
38
ZipEntry entry = zipIn.getNextEntry();
0 commit comments