Skip to content

Commit

Permalink
Only run files ending in .t
Browse files Browse the repository at this point in the history
Previously it accidentally filtered using the wildcard . instead of a
literal dot.
  • Loading branch information
Leont committed Jan 18, 2019
1 parent b0a86aa commit 26dba56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/prove6
Expand Up @@ -8,7 +8,7 @@ multi sub listall(IO::Path $path where .d) {
}
}
multi listall(IO::Path $path) {
when $path.f && $path ~~ /.t$/ {
when $path.f && $path ~~ /\.t$/ {
take ~$path;
}
}
Expand Down

0 comments on commit 26dba56

Please sign in to comment.