Merge pull request #3474 from spjspj/master

Fix the 'find_new_cards.pl'
This commit is contained in:
spjspj 2017-06-07 21:28:31 +10:00 committed by GitHub
commit ae569e3184

View file

@ -8,16 +8,18 @@ my $addedCards;
my $GIT_CMD = "C:\\Program Files (x86)\\Git\\bin\\git.exe"; my $GIT_CMD = "C:\\Program Files (x86)\\Git\\bin\\git.exe";
my $text = `\"$GIT_CMD\" tag`; my $text = `\"$GIT_CMD\" tag`;
print "Assuming the tag command is on: \"$GIT_CMD\" tag\n";
my @lines = split /\n/, $text; my @lines = split /\n/, $text;
my %order_of_tags; my %order_of_tags;
my $tag; my $tag;
foreach $tag (@lines) foreach $tag (@lines)
{ {
my $orig_num = $tag;
my $num = $tag; my $num = $tag;
if ($num =~ m/(\d+)\.(\d+).(\d+)v(\d+)/img) if ($num =~ m/(\d+)\.(\d+).(\d+)v(\d+)/img)
{ {
$num = $1 * 2000 + $2 * 100 + $3 * 20 + $1; $num = $1 * 2000 + $2 * 100 + $3 * 20 + $4;
$order_of_tags {$num} = $tag; $order_of_tags {$num} = $tag;
} }
} }