Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix deprecated use of $*VM<config>
  • Loading branch information
lizmat committed May 31, 2014
1 parent fca90ae commit e484df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_summary
Expand Up @@ -303,7 +303,7 @@ sub begin {
}
}
open( $self->{'file_out'}, '>', 'docs/test_summary.times.tmp') or die "cannot create docs/test_summary.times.tmp: $!";
my $parrot_version = qx{./perl6 -e'print \$*VM<config><revision>'};
my $parrot_version = qx{./perl6 -e'print \$*VM.config<revision>'};
my $impl_version = qx{git log --pretty=oneline --abbrev-commit --max-count=1 .}; chomp $impl_version;
$impl_version =~ s/^([0-9a-f])+\.\.\./$1/; # delete possible ...
$impl_version =~ s/\\/\\\\/g; # escape all backslashes
Expand Down

0 comments on commit e484df9

Please sign in to comment.