bodewig 00/11/14 08:20:40
Modified: docs index.html
src/main/org/apache/tools/ant DirectoryScanner.java
Log:
Make **/CVS/** a pattern in the list of default excludes instead of
**/CVS/*. This is to support users using cvs edit.
Revision Changes Path
1.151 +1 -1 jakarta-ant/docs/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/index.html,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- index.html 2000/11/14 09:30:38 1.150
+++ index.html 2000/11/14 16:20:37 1.151
@@ -732,7 +732,7 @@
"**/#*#",
"**/%*%",
"**/CVS",
- "**/CVS/*",
+ "**/CVS/**",
"**/.cvsignore"
</pre>
If you do not want these default excludes applied, you may disable them with
the
1.7 +1 -1
jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java
Index: DirectoryScanner.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DirectoryScanner.java 2000/08/21 14:36:03 1.6
+++ DirectoryScanner.java 2000/11/14 16:20:40 1.7
@@ -145,7 +145,7 @@
"**/#*#",
"**/%*%",
"**/CVS",
- "**/CVS/*",
+ "**/CVS/**",
"**/.cvsignore"
};