Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/rakudo/rakudo
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Apr 18, 2009
2 parents 7793fa5 + 2e3a51a commit 11bc88f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build/gen_parrot.pl
Expand Up @@ -27,15 +27,14 @@ =head2 DESCRIPTION
## determine what revision of Parrot we require
open my $REQ, "build/PARROT_REVISION"
|| die "cannot open build/PARROT_REVISION\n";
my $required = <$REQ>; chomp $required;
my $required = 0+<$REQ>;
close $REQ;

{
no warnings;
if (open my $REV, '-|', "parrot${slash}parrot_config revision") {
my $revision = <$REV>;
my $revision = 0+<$REV>;
close $REV;
chomp $revision;
if ($revision >= $required) {
print "Parrot r$revision already available (r$required required)\n";
exit(0);
Expand Down
1 change: 1 addition & 0 deletions docs/spectest-progress.csv
Expand Up @@ -330,3 +330,4 @@
"2009-04-15 00:00",d208e1c,10357,0,347,2148,12852,15801,362
"2009-04-16 00:00",a4535c1,10357,0,347,2148,12852,15801,362
"2009-04-17 00:00",a4535c1,10357,0,347,2148,12852,15801,362
"2009-04-18 00:00",f2c5829,10414,0,354,2153,12921,15860,371

0 comments on commit 11bc88f

Please sign in to comment.