JAL-3978 Add the bin dir to be copied from website appdir to archive appdir
authorBen Soares <b.soares@dundee.ac.uk>
Thu, 16 May 2024 13:59:17 +0000 (14:59 +0100)
committerJim Procter <jprocter@dundee.ac.uk>
Thu, 16 May 2024 14:10:20 +0000 (15:10 +0100)
build.gradle

index 6df3ec9..437c43a 100644 (file)
@@ -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)