Changeset 14

Show
Ignore:
Timestamp:
12/10/06 20:12:31 (2 years ago)
Author:
ingy
Message:
Ignore .svn directories on install
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/core/Kwiki/lib/Kwiki/Command.pm

    r9 r14  
    7373    chdir io->dir(shift || '.')->assert->open->name; 
    7474    my $noun = shift; 
    75     my @all_files = grep { not /^\.[\\\/]?(lib|Makefile)$/ } io('.')->all; 
     75    my @all_files = grep { not /^\.[\\\/]?(lib|Makefile|\.svn)$/ } io('.')->all; 
    7676    die "Can't make new $noun in a non-empty directory\n" 
    7777      if @all_files;