Author: nickboldt
Date: 2010-05-08 12:45:28 -0400 (Sat, 08 May 2010)
New Revision: 21976
Modified:
branches/modular_build/build/build.xml
Log:
implement workaround for 302 redirect issues when building on Windows: cache a copy of
svnant jars locally
Modified: branches/modular_build/build/build.xml
===================================================================
--- branches/modular_build/build/build.xml 2010-05-08 16:32:41 UTC (rev 21975)
+++ branches/modular_build/build/build.xml 2010-05-08 16:45:28 UTC (rev 21976)
@@ -168,7 +168,9 @@
<if>
<available file="${WORKINGDIR}/svnant.jar" type="file" />
<then>
- <copy file="${WORKINGDIR}/svnant.jar"
todir="${COMMON_TOOLS}" failonerror="true" />
+ <copy todir="${COMMON_TOOLS}" failonerror="true">
+ <fileset dir="${WORKINGDIR}" includes="*.jar" />
+ </copy>
</then>
<else>
<!-- ant <get> does not work due to 302/200 redirections -->
Show replies by date