Author: nickboldt
Date: 2011-01-20 20:56:41 -0500 (Thu, 20 Jan 2011)
New Revision: 28455
Modified:
trunk/build/aggregate/site/build.xml
Log:
set failifexecutionfails=false for meta file checks
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2011-01-21 01:20:39 UTC (rev 28454)
+++ trunk/build/aggregate/site/build.xml 2011-01-21 01:56:41 UTC (rev 28455)
@@ -59,25 +59,25 @@
<!-- fetch zip.list.txt file, if available -->
<var unset="true" name="ALL_ZIPS" />
<var unset="true" name="wget.return" />
- <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="true"
resultproperty="wget.return" outputproperty="null">
+ <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="false"
resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/zip.list.txt -q --no-clobber" />
</exec>
<echo level="verbose">Fetch SVN_REVISION.txt if it exists (return 8 if
not found)</echo>
<var name="svnRevTXT"
value="${aggregate.zips.dir}/SVN_REVISION.txt" />
- <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="true"
resultproperty="wget.return" outputproperty="null">
+ <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="false"
resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.txt -q --no-clobber"
/>
</exec>
<echo level="verbose">Fetch SVN_REVISION.xml if it exists (return 8 if
not found)</echo>
<var name="svnRevXML"
value="${aggregate.zips.dir}/SVN_REVISION.xml" />
- <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="true"
resultproperty="wget.return" outputproperty="null">
+ <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="false"
resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.xml -q --no-clobber"
/>
</exec>
<echo level="verbose">Fetch build.properties if it exists (return 8 if
not found)</echo>
<var name="buildProperties"
value="${aggregate.zips.dir}/build.properties" />
- <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="true"
resultproperty="wget.return" outputproperty="null">
+ <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="false"
resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/build.properties -q --no-clobber"
/>
</exec>
@@ -208,7 +208,7 @@
<echo level="verbose">repo = @{repo}</echo>
<!-- if no zip.list.txt from the inputRepo, then fetch from
@{repo}/compositeArtifacts.xml instead -->
<var name="wget.return" unset="true" />
- <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="true"
resultproperty="wget.return" outputproperty="null">
+ <exec executable="wget" dir="${aggregate.zips.dir}"
failonerror="false" failifexecutionfails="false"
resultproperty="wget.return" outputproperty="null">
<arg line="(a){repo}/compositeArtifacts.xml -q --no-clobber" />
</exec>
<if>
Show replies by date