mirror of https://github.com/encounter/SDL.git
build-scripts/wikiheaders.pl: ignore "Category" wiki pages.
This commit is contained in:
parent
20c622f090
commit
83b766174c
|
@ -597,6 +597,9 @@ while (readdir(DH)) {
|
||||||
next; # only dealing with wiki pages.
|
next; # only dealing with wiki pages.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Ignore "Category*" pages.
|
||||||
|
next if ($dent =~ /\ACategory/);
|
||||||
|
|
||||||
open(FH, '<', "$wikipath/$dent") or die("Can't open '$wikipath/$dent': $!\n");
|
open(FH, '<', "$wikipath/$dent") or die("Can't open '$wikipath/$dent': $!\n");
|
||||||
|
|
||||||
my $current_section = '[start]';
|
my $current_section = '[start]';
|
||||||
|
|
Loading…
Reference in New Issue