Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Also allow :from<NQP>
  • Loading branch information
lizmat committed Jul 8, 2014
1 parent b014db2 commit 18bb089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/CompUnitRepo/Local/File.pm
Expand Up @@ -5,7 +5,8 @@ class CompUnitRepo::Local::File does CompUnitRepo::Locally {
my %extensions =
perl6 => [$precomp,'pm6','pm'],
perl5 => [$precomp,'pm5','pm'],
nqp => [$precomp,'nqp'];
nqp => [$precomp,'nqp'],
NQP => [$precomp,'nqp'];
my $anyextensions = any($precomp,<pm6 pm5 pm nqp>);

method install($source, $from?) { ... }
Expand Down

0 comments on commit 18bb089

Please sign in to comment.