Author: nickboldt
Date: 2010-10-05 02:09:45 -0400 (Tue, 05 Oct 2010)
New Revision: 25480
Modified:
trunk/build/target-platform/publish.sh
Log:
switch from parallel to serial publishing; add more detailed du -sh commands
Modified: trunk/build/target-platform/publish.sh
===================================================================
--- trunk/build/target-platform/publish.sh 2010-10-05 05:42:03 UTC (rev 25479)
+++ trunk/build/target-platform/publish.sh 2010-10-05 06:09:45 UTC (rev 25480)
@@ -8,13 +8,15 @@
DESTINATION=tools@filemgmt.jboss.org:/downloads_htdocs/tools/updates/target-platform
if [[ -d ${repoPath} ]]; then
- du -sh ${repoPath}
+ du -sh ${repoPath} ${destinationPath}/${targetFile}
# 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}
+ du -sh ${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}