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

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon Jun 21 11:52:18 EDT 2010


Author: nickboldt
Date: 2010-06-21 11:52:18 -0400 (Mon, 21 Jun 2010)
New Revision: 22915

Modified:
   trunk/build/publish.sh
Log:
use update instead of freshen

Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh	2010-06-21 10:58:23 UTC (rev 22914)
+++ trunk/build/publish.sh	2010-06-21 15:52:18 UTC (rev 22915)
@@ -14,7 +14,7 @@
 		echo "BUILD_ID = ${BUILD_ID}" > ${WORKSPACE}/site/${JOB_NAME}/BUILD_ID.txt
 	
 		# unzip into workspace for publishing as unpacked site
-		unzip -f -o -q -d ${WORKSPACE}/site/${JOB_NAME}/ $z
+		unzip -u -o -q -d ${WORKSPACE}/site/${JOB_NAME}/ $z
 	
 		# copy into workspace for access by bucky aggregator (same name every time)
 		rsync -aq $z ${WORKSPACE}/site/${SNAPNAME}
@@ -24,7 +24,7 @@
 # if zips exist produced & renamed by ant script, copy them too
 for z in $(find ${WORKSPACE} -maxdepth 5 -mindepth 3 -name "*Update*.zip"); do 
 	echo "$z ..."
-	unzip -f -o -q -d ${WORKSPACE}/site/${JOB_NAME}/ $z
+	unzip -u -o -q -d ${WORKSPACE}/site/${JOB_NAME}/ $z
 	rsync -aq $z ${WORKSPACE}/site/${SNAPNAME}
 done
 



More information about the jbosstools-commits mailing list