فهرست منبع

build-scripts/wikiheaders.pl: ignore "Category" wiki pages.

Ryan C. Gordon 2 سال پیش
والد
کامیت
83b766174c
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      build-scripts/wikiheaders.pl

+ 3 - 0
build-scripts/wikiheaders.pl

@@ -597,6 +597,9 @@ while (readdir(DH)) {
         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");
 
     my $current_section = '[start]';