Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Search for .p6 files as well as .pl
  • Loading branch information
Paul Cochrane committed Feb 24, 2015
1 parent c254896 commit e3395b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run-examples.pl
Expand Up @@ -66,7 +66,7 @@ (:$example-dir)
@example-dirs = [$example-dir] if $example-dir;
my $base-dir = $*CWD;
for @example-dirs -> $dir {
my @example-files = find(dir => $dir).grep(/.pl$/).sort;
my @example-files = find(dir => $dir).grep(/.pl|6$/).sort;
for @example-files -> $example {
my $example-dir = $example.dirname;
my $example-name = $example.basename;
Expand Down

0 comments on commit e3395b5

Please sign in to comment.