Ignore:
Timestamp:
2013-08-19T15:52:23+12:00 (11 years ago)
Author:
ak19
Message:

Lucene collections generate didx and sidx folders in the index folder. These tend to to contain binaries. Skipping diffcol comparison for these (as with binaries in the index folder of an MGPP collection) as I am not sure how to even view the differences in content of these subfolders between two machines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nightly-tasks/diffcol/trunk/diffcol/diffutil.pm

    r27967 r28085  
    1616
    1717    opendir(DIR, $dirname) || die "can't opendir $dirname: $!";
    18     my $skipdirs_re = qr/^cached$/;
     18    my $skipdirs_re = qr/^cached|didx|sidx$/;
    1919    @local_files = grep { /^\w/ && ((-d  &util::filename_cat($dirname,$_) && $_ !~ m/$skipdirs_re/) || -f &util::filename_cat($dirname,$_))} readdir(DIR);
    2020    closedir DIR;
Note: See TracChangeset for help on using the changeset viewer.