mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 23:41:55 +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);
|
ZipEntry e = newZipEntry(zPath);
|
||||||
output.putNextEntry(e);
|
output.putNextEntry(e);
|
||||||
output.write(launcherConfigurator.getBytecode(reader));
|
output.write(launcherConfigurator.getBytecode(reader));
|
||||||
|
|
||||||
|
e = newZipEntry(sPath);
|
||||||
|
output.putNextEntry(e);
|
||||||
|
output.write(secureConfigurator.getBytecode(reader));
|
||||||
}
|
}
|
||||||
reader.close();
|
reader.close();
|
||||||
return outputJar;
|
return outputJar;
|
||||||
|
|
Loading…
Reference in a new issue