Skip to content

Commit

Permalink
Add PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
nxadm committed May 12, 2018
1 parent 3941f19 commit 27ec729
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/pkg_rakudo.pl
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@
### Test by installing and running perl6 and zef ###
my @cmd = ( @{ $distro_info{$os}{cmd} }, $pkg_dir . '/' . $pkg_name);
system(@cmd) == 0 or die($!);
system($install_root . '/bin/perl6', '-v') == 0 or die($!);
system($install_root . '/bin/zef') == 0 or die($!);
$EVV{PATH} = $install_root . '/bin:' . $ENV{PATH};
system('perl6', '-v') == 0 or die($!);
system('zef') == 0 or die($!);


exit 0;
Expand Down

0 comments on commit 27ec729

Please sign in to comment.