Author: nickboldt
Date: 2010-06-22 12:34:49 -0400 (Tue, 22 Jun 2010)
New Revision: 22931
Modified:
trunk/build/publish.sh
Log:
ensure we process site.zip THEN site_assembly.zip
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-06-22 16:33:22 UTC (rev 22930)
+++ trunk/build/publish.sh 2010-06-22 16:34:49 UTC (rev 22931)
@@ -23,8 +23,8 @@
fi
done
-# if component zips exist, copy them too
-for z in $(find ${WORKSPACE}/sources/*/site/target -type f -name "site*.zip");
do
+# if component zips exist, copy them too; first site.zip, then site_assembly.zip
+for z in $(find ${WORKSPACE}/sources/*/site/target -type f -name "site*.zip" |
sort -r); do
if [[ -f $z ]]; then
y=${z%%/site/target/*}; y=${y##*/}
echo "[$y] $z ..."
Show replies by date