X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=inc%2FGatherDir.pm;h=cdf3d87c9b244a69db588b39b9e508d497ec753d;hb=5d9b348077e8eac997cf7c6286ae47b61b14278c;hp=d21793fb952f44401c633a2f70890f976c26af96;hpb=5a2ed7eaaff30c6efdc9e27f3fc81b71589ce101;p=gitmo%2FMoose.git diff --git a/inc/GatherDir.pm b/inc/GatherDir.pm index d21793f..cdf3d87 100644 --- a/inc/GatherDir.pm +++ b/inc/GatherDir.pm @@ -8,8 +8,8 @@ around _file_from_filename => sub { my $orig = shift; my $self = shift; my $file = $self->$orig(@_); - return $file if $file->name =~ m+^t/002_recipes/basics_recipe10\.t+; - return () if $file->name =~ m+^t/002_recipes+; + return $file if $file->name =~ m+^t/recipes/basics_recipe10\.t+; + return () if $file->name =~ m+^t/recipes+; return $file; };