Ignore CVS lock and stale NFS files.

This commit is contained in:
Wolfram Schneider 1998-05-17 15:41:28 +00:00
parent 00293ac987
commit 03bf378f04
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=2809
2 changed files with 4 additions and 2 deletions

View file

@ -174,7 +174,8 @@ if (-d $fullname) {
if ($_ eq '.') {
next;
}
next if $_ eq '#cvs.lock';
# ignore CVS lock and stale NFS files
next if /^#cvs\.|^,|^\.nfs/;
if (s|^Attic/||) {
$attic = " (in the Attic)";

View file

@ -174,7 +174,8 @@ if (-d $fullname) {
if ($_ eq '.') {
next;
}
next if $_ eq '#cvs.lock';
# ignore CVS lock and stale NFS files
next if /^#cvs\.|^,|^\.nfs/;
if (s|^Attic/||) {
$attic = " (in the Attic)";