Author: nickboldt
Date: 2010-10-04 19:02:49 -0400 (Mon, 04 Oct 2010)
New Revision: 25475
Modified:
trunk/build/target-platform/publish.sh
Log:
fix recursive dir problem (not updating existing dirs)
Modified: trunk/build/target-platform/publish.sh
===================================================================
--- trunk/build/target-platform/publish.sh 2010-10-04 21:13:51 UTC (rev 25474)
+++ trunk/build/target-platform/publish.sh 2010-10-04 23:02:49 UTC (rev 25475)
@@ -11,10 +11,10 @@
du -sh ${repoPath}
# copy/update into central place for reuse by local downstream build jobs
- date; rsync -arzq --delete ${repoPath}/* ${destinationPath}/${targetFile}/ &
+ date; rsync -arzq --delete ${repoPath} ${destinationPath}/${targetFile} &
# upload to
http://download.jboss.org/jbossotools/updates/target-platform/latest/ for
public use
- date; rsync -arzq --delete --rsh=ssh ${repoPath}/* ${DESTINATION}/latest/ &
+ date; rsync -arzq --delete --rsh=ssh ${repoPath} ${DESTINATION}/latest &
# create zip, then upload to
http://download.jboss.org/jbossotools/updates/target-platform/${targetFil... for public
use
cd ${repoPath}