mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Забытая запись конфига в jar
This commit is contained in:
parent
d9e5e3d350
commit
908bd1cb76
1 changed files with 4 additions and 0 deletions
|
@ -224,6 +224,10 @@ public Path process(Path inputJar) throws IOException {
|
|||
ZipEntry e = newZipEntry(zPath);
|
||||
output.putNextEntry(e);
|
||||
output.write(launcherConfigurator.getBytecode(reader));
|
||||
|
||||
e = newZipEntry(sPath);
|
||||
output.putNextEntry(e);
|
||||
output.write(secureConfigurator.getBytecode(reader));
|
||||
}
|
||||
reader.close();
|
||||
return outputJar;
|
||||
|
|
Loading…
Reference in a new issue