You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by pe...@apache.org on 2004/01/13 13:32:16 UTC

cvs commit: ant build.xml

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: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org


Re: cvs commit: ant build.xml

Posted by Antoine Lévy-Lambert <an...@antbuild.com>.
peterreilly@apache.org 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: dev-unsubscribe@ant.apache.org
>For additional commands, e-mail: dev-help@ant.apache.org
>
>
>  
>
I had no clue why these zip files were corrupted. Well done Peter and 
Jesse ! :-)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org