Changeset 5817


Ignore:
Timestamp:
07/04/09 06:13:18 (3 years ago)
Author:
szabgab
Message:

ignore the blib directory as well

Location:
trunk/Padre-Plugin-Ecliptic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre-Plugin-Ecliptic/Changes

    r5709 r5817  
    11Changes 
     2 
     3    - Ignore blib directory as well. 
    24 
    35=head1 0.14  2009.6.29 
  • trunk/Padre-Plugin-Ecliptic/lib/Padre/Plugin/Ecliptic/OpenResourceDialog.pm

    r5709 r5817  
    135135     
    136136    # ignore .svn/.git checkbox 
    137     $self->_ignore_dir_check( Wx::CheckBox->new( $self, -1, Wx::gettext('Ignore CVS/.svn/.git folders')) ); 
     137    $self->_ignore_dir_check( Wx::CheckBox->new( $self, -1, Wx::gettext('Ignore CVS/.svn/.git/blib folders')) ); 
    138138    $self->_ignore_dir_check->SetValue(1); 
    139139     
     
    232232        $rule->or( $rule->new 
    233233                        ->directory 
    234                         ->name('CVS', '.svn', '.git') 
     234                        ->name('CVS', '.svn', '.git', 'blib') 
    235235                        ->prune 
    236236                        ->discard, 
Note: See TracChangeset for help on using the changeset viewer.