Skip to content

Commit

Permalink
5.6.6 Compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
gravit0 authored Aug 20, 2024
1 parent 97c51f6 commit 862b59b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public Path process(Path inputFile) throws IOException {
try(InputStream input = IOHelper.newInput(prestarterPath)) {
input.transferTo(output);
}
try(InputStream input = IOHelper.newInput(server.launcherBinary.syncBinaryFile)) {
try(InputStream input = IOHelper.newInput(server.updatesDir.resolve(server.launcherBinary.syncBinaryFile))) {
input.transferTo(output);
}
}
Expand Down

0 comments on commit 862b59b

Please sign in to comment.