Config bugs fixes.

This commit is contained in:
zaxar163 2019-01-09 17:15:09 +04:00
parent e6ff3703ee
commit d1914c7b1a
No known key found for this signature in database
GPG key ID: CEE900027AE098E0

View file

@ -564,9 +564,8 @@ private void generateConfigIfNotExists() throws IOException {
newConfig.launch4j.txtProductVersion = "%s, build %d";
newConfig.launch4j.productName = "GravitLauncher";
newConfig.launch4j.productVer = newConfig.launch4j.fileVer;
newConfig.buildPostTransform = new PostBuildTransformConf();
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
newConfig.startScript = "." + File.separator + "start.sh";
newConfig.startScript = JVMHelper.OS_TYPE.equals(JVMHelper.OS.MUSTDIE) ? "." + File.separator + "start.bat" : "." + File.separator + "start.sh";
newConfig.authHandler = new MemoryAuthHandler();
newConfig.hwidHandler = new AcceptHWIDHandler();