Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[bootstrap.pl] avoid a warning if $PERL6LIB is not set
  • Loading branch information
moritz committed Jul 13, 2012
1 parent b19c383 commit a5814af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.pl
@@ -1,5 +1,5 @@
use v6;

%*ENV<PERL6LIB> = "{%*ENV<PERL6LIB>}:{cwd}/ext:{cwd}/lib";
%*ENV<PERL6LIB> = "{%*ENV<PERL6LIB> // ''}:{cwd}/ext:{cwd}/lib";
shell "perl6 bin/panda install File::Tools JSON::Tiny Test::Mock";
shell "perl6 bin/panda install .";

0 comments on commit a5814af

Please sign in to comment.