[jbosstools-commits] JBoss Tools SVN: r41454 - trunk/build.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri May 25 21:38:57 EDT 2012


Author: nickboldt
Date: 2012-05-25 21:38:57 -0400 (Fri, 25 May 2012)
New Revision: 41454

Modified:
   trunk/build/publish.sh
Log:
add support for discovery of {WORKSPACE}/sources/product/installer/target/jbdevstudio-product*-universal*.jar*; copy new installers into {STAGINGDIR}/installer/

Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh	2012-05-26 00:30:46 UTC (rev 41453)
+++ trunk/build/publish.sh	2012-05-26 01:38:57 UTC (rev 41454)
@@ -144,6 +144,12 @@
 	fi
 done
 
+# if installer jars exist (should be 2 installers, 2 md5sums)
+for z in $(find ${WORKSPACE}/sources/product/installer/target -type f -name "jbdevstudio-product*-universal*.jar*"); do 
+	mkdir -p ${STAGINGDIR}/installer/
+	rsync -aq $z ${STAGINGDIR}/installer/
+done
+
 # if zips exist produced & renamed by ant script, copy them too
 if [[ ! -f ${STAGINGDIR}/all/${SNAPNAME} ]]; then
 	for z in $(find ${WORKSPACE} -maxdepth 5 -mindepth 3 -name "*Update*.zip" | sort | tail -1); do 



More information about the jbosstools-commits mailing list