cmpVERSION.pl: Correct err msg
authorFather Chrysostomos <sprout@cpan.org>
Sat, 23 Jun 2012 06:20:09 +0000 (23:20 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Sat, 23 Jun 2012 13:28:56 +0000 (06:28 -0700)
Porting/cmpVERSION.pl

index ebf57cf..8d39d74 100755 (executable)
@@ -157,7 +157,8 @@ foreach my $pm_file (sort keys %module_diffs) {
     ++$count;
 
     if (!defined $orig_pm_version || $orig_pm_version eq 'undef') { # sigh
-        print "ok $count - SKIP Can't pass \$VERSION in $pm_file\n" if $tap;
+        print "ok $count - SKIP Can't parse \$VERSION in $pm_file\n"
+          if $tap;
     } elsif (!defined $pm_version || $pm_version eq 'undef') {
         print "not ok $count - in $pm_file version was $orig_pm_version, now unparsable\n" if $tap;
     } elsif ($pm_version ne $orig_pm_version) { # good