Skip to content

Commit

Permalink
Fix input jar loop aborting on dir (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytv authored Feb 13, 2024
1 parent 72c6eea commit e308285
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void run(File input, File output) {
for (Enumeration<? extends ZipEntry> entries = in.entries(); entries.hasMoreElements();) {
final ZipEntry e = entries.nextElement();
if (e.isDirectory())
return;
continue;
String name = e.getName();
byte[] data = Util.toByteArray(in.getInputStream(e));

Expand Down

0 comments on commit e308285

Please sign in to comment.