From: Eric Wong Date: Fri, 24 Jan 2020 22:09:32 +0000 (+0000) Subject: website: omit technical/ and other subdirs X-Git-Tag: v1.3.0~78 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=cf7f4fce116878025fbb98bc589fb1da050cf473 website: omit technical/ and other subdirs We don't need to clutter the website with unnecessary technical information. Anybody who reads the technical/ directory should be looking at our source code, anyways; and we also have cgit and gitweb mirrors. --- diff --git a/Makefile.PL b/Makefile.PL index 46ef99f9..d626aef4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,7 +11,7 @@ my $t = {}; my @RELEASES = qw(v1.2.0 v1.1.0-pre1 v1.0.0); # do not sort $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ]; $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ]; -my @dtxt = grep(m!\ADocumentation/.*\.txt\z!, @manifest); +my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest); push @dtxt, 'Documentation/standards.txt'; push @dtxt, @{$v->{txt}}; for my $txt (@dtxt) {