Browse Source

Make **/CVS/** a pattern in the list of default excludes instead of

**/CVS/*. This is to support users using cvs edit.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268180 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
98b1db9d01
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      docs/index.html
  2. +1
    -1
      src/main/org/apache/tools/ant/DirectoryScanner.java

+ 1
- 1
docs/index.html View File

@@ -732,7 +732,7 @@ They are:
"**/#*#",
"**/%*%",
"**/CVS",
"**/CVS/*",
"**/CVS/**",
"**/.cvsignore"
</pre>
If you do not want these default excludes applied, you may disable them with the


+ 1
- 1
src/main/org/apache/tools/ant/DirectoryScanner.java View File

@@ -145,7 +145,7 @@ public class DirectoryScanner implements FileScanner {
"**/#*#",
"**/%*%",
"**/CVS",
"**/CVS/*",
"**/CVS/**",
"**/.cvsignore"
};



Loading…
Cancel
Save