Skip to content

Commit

Permalink
Revert "Include path for subprocess"
Browse files Browse the repository at this point in the history
  • Loading branch information
vrurg committed Sep 1, 2019
1 parent 0d7857b commit adcb128
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/Test-Helpers/lib/Test/Util.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,6 @@ sub get_out( Str $code, Str $input?, :@args, :@compiler-args) is export {

my $cmd = $*EXECUTABLE.absolute ~ ' ';
$cmd ~= @compiler-args.join(' ') ~ ' ' if @compiler-args;
use nqp;
# Add -I from our runner command line.
my %cli-args = nqp::getcomp("perl6").cli-options;
$cmd ~= .map( '-I' ~ * ).join(' ') ~ ' ' with %cli-args<I>;
$cmd ~= $fnbase ~ '.code' if $code.defined;
$cmd ~= " @actual_args.join(' ') < $fnbase.in > $fnbase.out 2> $fnbase.err";
# diag("Command line: $cmd");
Expand Down

0 comments on commit adcb128

Please sign in to comment.