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,12 +101,13 @@ $funcs{'SDL_WinRTGetFSPathUNICODE'} = '2.0.3';
$funcs{'SDL_WinRTGetFSPathUTF8'} = '2.0.3'; $funcs{'SDL_WinRTGetFSPathUTF8'} = '2.0.3';
$funcs{'SDL_WinRTRunApp'} = '2.0.3'; $funcs{'SDL_WinRTRunApp'} = '2.0.3';
if (not defined $wikipath) {
foreach my $release (@releases) { foreach my $release (@releases) {
foreach my $fn (sort keys %funcs) { foreach my $fn (sort keys %funcs) {
print("$fn: $funcs{$fn}\n") if $funcs{$fn} eq $release; print("$fn: $funcs{$fn}\n") if $funcs{$fn} eq $release;
} }
} }
} else {
if (defined $wikipath) { if (defined $wikipath) {
chdir($wikipath); chdir($wikipath);
foreach my $fn (keys %funcs) { foreach my $fn (keys %funcs) {
@ -159,5 +160,5 @@ if (defined $wikipath) {
close(FH); close(FH);
} }
} }
}