Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
try to fix invocation of rakudo-jvm
  • Loading branch information
moritz committed Oct 29, 2013
1 parent 9b8425a commit 7f925f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/Test/Util.pm
Expand Up @@ -93,7 +93,7 @@ sub get_out( Str $code, Str $input?, :@args, :@compiler-args) is export {

my $perl6 = $*EXECUTABLE_NAME;
my $cmd = $perl6 ~~ m:i/niecza/ ?? "mono $perl6 " !! "$perl6 ";
$cmd = $perl6 ~~ m:i/java/ ?? "./perl6 " !! "$perl6 ";
$cmd = $perl6 ~ ' ';
$cmd = $perl6 ~~ m:i/^perl6/ ?? "./perl6 " !! "$perl6 ";
$cmd ~= @compiler-args.join(' ') ~ ' ' if @compiler-args;
$cmd ~= $fnbase ~ '.code' if $code.defined;
Expand Down

0 comments on commit 7f925f9

Please sign in to comment.