X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=84d5f73d6e70f24c288a91242f421dbd60808e7c;hb=221d973075512e015f7c13332c77162ea6b5e7bb;hp=71eb491e3cd6ec8b45331a4062eec405702c145e;hpb=87cf0bc9b8dd3420b6e4118b61c2a6eeab6a6b22;p=jalview.git diff --git a/build.gradle b/build.gradle index 71eb491..84d5f73 100644 --- a/build.gradle +++ b/build.gradle @@ -807,7 +807,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 = " + file(getdownLauncher).getName() + "\n" + getdownTextString += "resource = " + getdown_launcher_new + "\n" getdownTextString += "class = " + mainClass + "\n" def getdown_txt = file(project.ext.getdownWebsiteDir + "/getdown.txt") @@ -820,6 +820,12 @@ task getdownWebsite() { copy { from getdownLauncher + into project.ext.getdownWebsiteDir + rename(file(getdownLauncher).getName(), getdown_launcher_new) + } + + copy { + from getdownLauncher into project.ext.getdownFilesDir }