From: Ben Soares Date: Thu, 16 May 2024 13:59:17 +0000 (+0100) Subject: JAL-3978 Add the bin dir to be copied from website appdir to archive appdir X-Git-Tag: Release_2_11_4_0~35^2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=be1bafa0439c091e51d7a6aa2084fd201f8c24f4;p=jalview.git JAL-3978 Add the bin dir to be copied from website appdir to archive appdir --- diff --git a/build.gradle b/build.gradle index 6df3ec9..437c43a 100644 --- a/build.gradle +++ b/build.gradle @@ -2608,6 +2608,14 @@ task getdownArchiveBuild() { } } + // the wrapper scripts dir + if ( file("${getdownAppBaseDir}/${getdown_wrapper_script_dir}").exists() ) { + copy { + from "${getdownAppBaseDir}/${getdown_wrapper_script_dir}" + into "${getdownFullArchiveDir}/${getdown_wrapper_script_dir}" + } + } + getdownArchiveTxt.write(getdownArchiveTextLines.join("\n")) def vLaunchJvl = file(getdownVersionLaunchJvl)