Skip to content

Commit ae92d15

Browse files
author
brian d foy
committed
Show a counter for the testing perls, from Tux in #12
1 parent 3c10e42 commit ae92d15

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

script/release

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,8 +519,10 @@ $release->_debug( "dist version is <$Version>\n" );
519519
unless( $opts{T} ) {
520520
my $old_perl = $release->get_perl;
521521

522-
PERL: foreach my $perl ( $release->perls ) {
523-
$release->_print("============Testing with $perl\n");
522+
my @perls = $release->perls;
523+
my ($n, $N) = (1, scalar @perls);
524+
PERL: foreach my $perl ( @perls ) {
525+
$release->_print("============ Testing with $perl (", $n++, "/$N)\n");
524526
$release->set_perl( $perl ) or next;
525527

526528
$release->clean;

0 commit comments

Comments
 (0)