Browse Source

Filtering was active during copying docs/images - bad results for our nice logos :-(

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269669 13f79535-47bb-0310-9956-ffa450edef68
master
Nico Seessle 24 years ago
parent
commit
e88985ddda
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      build.xml

+ 10
- 2
build.xml View File

@@ -369,12 +369,20 @@
</copy>

<copy todir="${dist.lib}" file="${lib.dir}/optional/README"/>
<copy todir="${dist.docs}">
<fileset dir="${docs.dir}"/>
<fileset dir="${docs.dir}">
<exclude name="**/images/**"/>
</fileset>
<filterset refid="ant.filters"/>
</copy>

<copy todir="${dist.docs}" filtering="false">
<fileset dir="${docs.dir}">
<include name="**/images/**"/>
</fileset>
</copy>

<copy todir="${dist.dir}">
<fileset dir=".">
<include name="README"/>


Loading…
Cancel
Save