Skip to content

Commit

Permalink
Fix unwanted creation of "lib:." directory
Browse files Browse the repository at this point in the history
Don't think we need the "." in lib anyway, so fix just by nixing that part.
  • Loading branch information
zoffixznet committed Dec 25, 2016
1 parent c498d5b commit a6c37a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/fudgeandrun
Expand Up @@ -39,6 +39,6 @@ my $nt = `t/spec/fudge @OPTS @ARGV`;
# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
my $pwd = `pwd`; chomp $pwd;
$ENV{PERL6LIB}="$pwd/lib:.";
$ENV{PERL6LIB}="$pwd/lib";
my $first = substr($backend, 0, 1);
system("./perl6-$first", split ' ', $nt);

0 comments on commit a6c37a7

Please sign in to comment.