[jbosstools-commits] JBoss Tools SVN: r41849 - branches/jbosstools-3.3.x/build/publish.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Sat Jun 9 03:36:07 EDT 2012


Author: nickboldt
Date: 2012-06-09 03:36:04 -0400 (Sat, 09 Jun 2012)
New Revision: 41849

Modified:
   branches/jbosstools-3.3.x/build/publish/publish.sh
Log:
JBDS-1992 if product/results/target/ folder exists, copy contents into installer/ folder

Modified: branches/jbosstools-3.3.x/build/publish/publish.sh
===================================================================
--- branches/jbosstools-3.3.x/build/publish/publish.sh	2012-06-08 23:58:25 UTC (rev 41848)
+++ branches/jbosstools-3.3.x/build/publish/publish.sh	2012-06-09 07:36:04 UTC (rev 41849)
@@ -195,6 +195,12 @@
 	z=${STAGINGDIR}/all/${srczipname}; for m in $(md5sum ${z}); do if [[ $m != ${z} ]]; then echo $m > ${z}.MD5; fi; done
 fi
 
+# JBDS-1992 create results page in installer/ folder, including update site zip, sources zip, and installers
+if [[ -d ${WORKSPACE}/sources/product/results/target ]]; then
+	mkdir -p ${STAGINGDIR}/installer/
+	rsync -aq ${WORKSPACE}/sources/product/results/target/* ${STAGINGDIR}/installer/
+fi
+
 mkdir -p ${STAGINGDIR}/logs
 
 # collect component zips from upstream aggregated build jobs



More information about the jbosstools-commits mailing list