From be1bafa0439c091e51d7a6aa2084fd201f8c24f4 Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Thu, 16 May 2024 14:59:17 +0100 Subject: [PATCH] JAL-3978 Add the bin dir to be copied from website appdir to archive appdir --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) 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) -- 1.7.10.2