Author: nickboldt
Date: 2010-08-12 01:40:07 -0400 (Thu, 12 Aug 2010)
New Revision: 24085
Modified:
trunk/build/aggregate/site/build.xml
Log:
disable debug; fix path problems
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 05:18:20 UTC (rev 24084)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 05:40:07 UTC (rev 24085)
@@ -182,6 +182,7 @@
if found, load file and use ${ALL_ZIPS} to get list of relative path zips to fetch
-->
<target name="collect.zips" description="collect zips from the sites
we aggregated">
<property name="aggegate.zips.dir" value="${output.dir}/zips"
/>
+ <delete dir="${aggegate.zips.dir}" quiet="true" />
<mkdir dir="${aggegate.zips.dir}" />
<for list="${inputRepos}" delimiter=", "
keepgoing="true" param="repoNum">
<sequential>
@@ -201,13 +202,13 @@
<sequential>
<propertyregex override="true"
property="relativePath"
- defaultvalue="@{zipPath}"
+ defaultvalue=""
input="@{zipPath}"
regexp="(.+)/([^/]+.zip)"
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
- <echo>repoNum = @{repoNum}
+ <echo level="debug">repoNum = @{repoNum}
relativePath = ${relativePath}
zipPath = @{zipPath}
URL = ${inputRepo@{repoNum}}/@{zipPath}
Show replies by date