Browse Source

stop corruption of .zip files in docs

PR: 25698
Obtained from: Jesse Glick


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275910 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 21 years ago
parent
commit
6b6b21223c
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      build.xml

+ 8
- 0
build.xml View File

@@ -957,10 +957,18 @@
<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">
<fileset dir="${docs.dir}" includes="${unfiltered.files}">
<patternset refid="site.excludes"/>


Loading…
Cancel
Save