Skip to content

Commit

Permalink
Make sure 'use lib @Dirs' works correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jun 10, 2014
1 parent c8e91cb commit 1a3706c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lib.pm6
@@ -1,5 +1,5 @@
module lib { };
our sub EXPORT(*@a) {
@*INC.unshift: CompUnitRepo::Local::File.new( @a );
@*INC.unshift: @a.map( { CompUnitRepo::Local::File.new($_) } );
return ().hash;
}

0 comments on commit 1a3706c

Please sign in to comment.