Browse Source

Fixed error in globmapper example: the correct attribute is 'handledirsep' instead of 'ignoredirchar'.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1052393 13f79535-47bb-0310-9956-ffa450edef68
master
Maarten Coene 14 years ago
parent
commit
2b42aa7c1a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/manual/Types/mapper.html

+ 1
- 1
docs/manual/Types/mapper.html View File

@@ -335,7 +335,7 @@ that don't match the <code>from</code> pattern will be ignored.</p>
&lt;pathconvert property="x" targetos="unix"&gt;
&lt;path path="d/e/f/j.java"/&gt;
&lt;mapper&gt;
&lt;globmapper from="${basedir}\d/e\*" to="*" ignoredirchar="yes"/&gt;
&lt;globmapper from="${basedir}\d/e\*" to="*" handledirsep="yes"/&gt;
&lt;/mapper&gt;
&lt;/pathconvert&gt;
&lt;echo&gt;x is ${x}&lt;/echo&gt;


Loading…
Cancel
Save