Skip to content

Commit adcb128

Browse files
authored
Revert "Include path for subprocess"
1 parent 0d7857b commit adcb128

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/Test-Helpers/lib/Test/Util.pm6

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,6 @@ sub get_out( Str $code, Str $input?, :@args, :@compiler-args) is export {
213213

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

0 commit comments

Comments
 (0)