fnsince.pl: Don't print out the version numbers if updating the wiki.

This commit is contained in:
Ryan C. Gordon 2021-10-26 21:01:05 -04:00
parent 85edbc92ac
commit 179a04f85a
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 49 additions and 48 deletions

View File

@ -101,13 +101,14 @@ $funcs{'SDL_WinRTGetFSPathUNICODE'} = '2.0.3';
$funcs{'SDL_WinRTGetFSPathUTF8'} = '2.0.3';
$funcs{'SDL_WinRTRunApp'} = '2.0.3';
foreach my $release (@releases) {
if (not defined $wikipath) {
foreach my $release (@releases) {
foreach my $fn (sort keys %funcs) {
print("$fn: $funcs{$fn}\n") if $funcs{$fn} eq $release;
}
}
if (defined $wikipath) {
}
} else {
if (defined $wikipath) {
chdir($wikipath);
foreach my $fn (keys %funcs) {
my $revision = $funcs{$fn};
@ -158,6 +159,6 @@ if (defined $wikipath) {
}
close(FH);
}
}
}