Skip to content
This repository has been archived by the owner on Jul 24, 2021. It is now read-only.

Commit

Permalink
skip all local* dirs too
Browse files Browse the repository at this point in the history
  • Loading branch information
karenetheridge committed Jan 6, 2020
1 parent 81edd65 commit c9e1075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ tags
/nytprof
/nytprof.log
/local/
/local*

# used by the docker-compose file
/postgres
2 changes: 1 addition & 1 deletion t/01-compile.t
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ my @module_files = sort map s{^lib/}{}r, grep -f && /\.pm$/, map keys $_->%*,
my @scripts = sort
grep -f && -x, map keys $_->%*,
map path($_)->visit(sub { $_[1]->{$_[0]} = 1 }, { recurse => 1 }),
grep -d && $_ ne '.git' && $_ ne 'local', glob('*');
grep -d && $_ ne '.git' && !/^local/, glob('*');


# no fake home requested
Expand Down

0 comments on commit c9e1075

Please sign in to comment.