Author: nickboldt
Date: 2010-08-12 01:18:20 -0400 (Thu, 12 Aug 2010)
New Revision: 24084
Modified:
trunk/build/aggregate/site/build.xml
Log:
debug
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 04:55:01 UTC (rev 24083)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 05:18:20 UTC (rev 24084)
@@ -191,10 +191,12 @@
<available file="${aggegate.zips.dir}/zip.list.txt"
type="file" />
<then>
<!-- load zip.list.txt file, get ALL_ZIPS list -->
+ <var unset="true" name="ALL_ZIPS" />
<property file="${aggegate.zips.dir}/zip.list.txt" />
<if>
<isset property="ALL_ZIPS" />
<then>
+ <var name="relativePath" unset="true" />
<for list="${ALL_ZIPS}" delimiter=", "
keepgoing="true" param="zipPath">
<sequential>
<propertyregex override="true"
@@ -205,13 +207,19 @@
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
+ <echo>repoNum = @{repoNum}
+relativePath = ${relativePath}
+zipPath = @{zipPath}
+URL = ${inputRepo@{repoNum}}/@{zipPath}
+DEST = ${aggegate.zips.dir}/@{zipPath}
+</echo>
<get src="${inputRepo@{repoNum}}/@{zipPath}"
dest="${aggegate.zips.dir}/@{zipPath}" />
- <var name="relativePath" unset="true" />
</sequential>
</for>
- <var unset="true" name="ALL_ZIPS" />
+ <var name="relativePath" unset="true" />
</then>
</if>
+ <var unset="true" name="ALL_ZIPS" />
<delete file="${aggegate.zips.dir}/zip.list.txt"
quiet="true" />
</then>
</if>
Show replies by date