In perl.git, the branch alh/cpan-bisect has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e36bb60d86001351e4a8f548bc3b3ccaac38bc19?hp=a04d9a1e8141074f590feae27b43064d828571de>
- Log ----------------------------------------------------------------- commit e36bb60d86001351e4a8f548bc3b3ccaac38bc19 Author: Matthew Horsfall (alh) <[email protected]> Date: Sat Apr 18 15:56:34 2015 -0400 When bisecting with --module=, don't stop to ask user for input ----------------------------------------------------------------------- Summary of changes: Porting/bisect-runner.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index 5e7d5f6..ba7ab0f 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -1432,6 +1432,10 @@ if ($options{module} || $options{'with-module'}) { CLEANUP => 1, ) or die $!; + # Don't ever stop to ask the user for input + $ENV{AUTOMATED_TESTING} = 1; + $ENV{PERL_MM_USE_DEFAULT} = 1; + my @cpanshell = ( "$prefix/bin/perl", "-MCPAN", -- Perl5 Master Repository
