[EMAIL PROTECTED] wrote:

peterreilly    2004/01/13 04:32:16

Modified: . build.xml
Log:
stop corruption of .zip files in docs
PR: 25698
Obtained from: Jesse Glick
Revision Changes Path
1.405 +8 -0 ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/ant/build.xml,v
retrieving revision 1.404
retrieving revision 1.405
diff -u -r1.404 -r1.405
--- build.xml 3 Dec 2003 21:58:07 -0000 1.404
+++ build.xml 13 Jan 2004 12:32:16 -0000 1.405
@@ -957,8 +957,16 @@
<copy todir="${dist.docs}">
<fileset dir="${docs.dir}" excludes="${unfiltered.files}">
<patternset refid="site.excludes"/>
+ <exclude name="**/*.zip"/>
</fileset>
<filterchain refid="ant.filters"/>
+ </copy>
+
+ <copy todir="${dist.docs}">
+ <fileset dir="${docs.dir}" excludes="${unfiltered.files}">
+ <include name="**/*.zip"/>
+ <patternset refid="site.excludes"/>
+ </fileset>
</copy>
<copy todir="${dist.docs}" filtering="false">


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




I had no clue why these zip files were corrupted. Well done Peter and Jesse ! :-)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to