Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ public boolean run(File target, File installer) throws ActionCanceledException {

checkCancel();
try (ZipOutputStream zout = new ZipOutputStream(new FileOutputStream(target))) {
// Explicitly set compression level because of potential differences based on environment.
// See https://github.com/MinecraftForge/JarSplitter/pull/2
zout.setLevel(6);
Set<String> seen = new HashSet<>();

// Copy our input installer jar
Expand Down