Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Forgot to commafy one PERL6LIB ref
  • Loading branch information
lizmat committed May 4, 2015
1 parent 3c5fe7f commit 31f3db1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions t/harness
Expand Up @@ -37,8 +37,7 @@ my @files = grep m/^[^-]/, @ARGV;

my $slash = $^O eq 'MSWin32' ? '\\' : '/';
$ENV{'HARNESS_PERL'} = ".${slash}perl6-" . ($moar ? "m" : $jvm ? "j" : "p");
my $path_sep = $^O eq 'MSWin32' ? ';' : ':';
$ENV{'PERL6LIB'} = join $path_sep, qw/ lib . /;
$ENV{'PERL6LIB'} = join ',', qw/ lib . /;

if ($list_file) {
my $perl5 = not system $ENV{HARNESS_PERL} . ' -e "exit !try { require Inline::Perl5 }"';
Expand Down

0 comments on commit 31f3db1

Please sign in to comment.