From 46de3e3e40a79d4d8b11c48190d3bf1654e7c76b Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Thu, 13 Aug 2020 17:51:44 +0100 Subject: [PATCH] JAL-3675 brought forward patch to build.gradle for changed main class variable in build.properties --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2060073..682b5c2 100644 --- a/build.gradle +++ b/build.gradle @@ -1364,7 +1364,7 @@ task getdownWebsite() { // getdown-launcher.jar should not be in main application class path so the main application can move it when updated. Listed as a resource so it gets updated. //getdownTextString += "class = " + file(getdownLauncher).getName() + "\n" getdownTextString += "resource = ${getdown_launcher_new}\n" - getdownTextString += "class = ${mainClass}\n" + getdownTextString += "class = ${main_class}\n" def getdown_txt = file("${getdownWebsiteDir}/getdown.txt") getdown_txt.write(getdownTextString) -- 1.7.10.2