Changeset 2364


Ignore:
Timestamp:
26/10/2008 17:05:51 (3 years ago)
Author:
jamesog
Message:

Don't include docs/ in the cleanup search.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/cleanupforcvs.pl

    r217 r2364  
    1111my @bad_h; 
    1212 
    13 open EVERYTHING,'find . |' or die "Can't open find for file listing"; 
     13open EVERYTHING,'find . -type d \( -name docs \) -prune -o -type f |' or die "Can't open find for file listing"; 
    1414 
    1515my %exclude_from_memtest_checks = ('PollEmulator.cpp'=>1,'DebugMemLeakFinder.cpp'=>1,'MemLeakFinder.h'=>1,'MemLeakFindOn.h'=>1,'MemLeakFindOff.h'=>1,'Box.h'=>1); 
     
    179179                print $_,"\n"; 
    180180        } 
    181         print "Delete these ",$#$del_r + 1, " $name?"; 
     181        print "Delete these ",$#$del_r + 1, " $name? "; 
    182182        my $in = <STDIN>; 
    183183        chomp $in; 
Note: See TracChangeset for help on using the changeset viewer.