Ignore CVS lock and stale NFS files.
This commit is contained in:
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
|
@ -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)";
|
||||
|
|
|
@ -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)";
|
||||
|
|
Loading…
Reference in a new issue