commit 1c7db5cea6ea658d3f158b2d50ca1704c5fdeb12
parent 61f51b2bbf2b3d57b809713310115df2d464f6cb
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 29 Mar 2022 20:57:39 +0200
gen-docs: disable format::ini
References: https://todo.sr.ht/~sircmpwn/hare/598
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/scripts/gen-docs b/scripts/gen-docs
@@ -26,6 +26,11 @@ mkdir -p docs/html/
haredoc -Fhtml > docs/html/index.html
for mod in $modules compress format encoding math crypto hare rt iobus
do
+ if [ $mod = "format::ini" ]
+ then
+ # https://todo.sr.ht/~sircmpwn/hare/598
+ continue
+ fi
echo $mod
path="$(echo $mod | sed -e 's?::?/?g')"
mkdir -p docs/html/$path