Skip to content

Commit

Permalink
NestableJarGenerationTask: Fix nesting data being in the wrong jar
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Jul 2, 2024
1 parent 03672f3 commit 995ef08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private void makeNestableJar(final File input, final File output, final @Nullabl

if (nestingMetadata != null) {
try {
ZipUtils.add(input.toPath(), NESTING_METADATA_PATH, nestingMetadata);
ZipUtils.add(output.toPath(), NESTING_METADATA_PATH, nestingMetadata);
} catch (IOException e) {
throw new UncheckedIOException("Failed to add nesting metadata to " + input, e);
}
Expand Down

0 comments on commit 995ef08

Please sign in to comment.