From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 59F1E1F5AE for ; Tue, 25 May 2021 23:02:46 +0000 (UTC) From: Eric Wong To: raindrops-public@yhbt.net Subject: [PATCH] pkg.mk: remove index.html and created.rid from homepage Date: Tue, 25 May 2021 23:02:46 +0000 Message-Id: <20210525230246.27434-1-bofh@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: index.html and README.html are identical, so get rid of it. created.rid has no business being public, anyways. Our homepage is just a directory listing, nowadays, to improve discoverability of non-HTML docs. --- pkg.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg.mk b/pkg.mk index 628830d..ebed5da 100644 --- a/pkg.mk +++ b/pkg.mk @@ -127,7 +127,8 @@ publish_doc: -git set-file-times $(MAKE) doc $(MAKE) doc_gz - $(RSYNC) -av doc/ $(RSYNC_DEST)/ + $(RSYNC) -av doc/ $(RSYNC_DEST)/ \ + --exclude index.html* --exclude created.rid* git ls-files | xargs touch endif