From 3d0383fbdf3828b8c6d155e098228181b85dc95d Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sat, 16 May 2020 19:58:26 +0200 Subject: [PATCH] Include module documentation in the generated report This closes #2. --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a44a26c..0f3a130 100755 --- a/build.sh +++ b/build.sh @@ -21,7 +21,8 @@ Generated from Godot commit [$COMMIT_HASH](https://github.com/godotengine/godot/ EOF # Trim the first line of the output to get a valid Markdown table. -python3 "$TMP/doc/tools/doc_status.py" -u "$TMP/doc/classes" | tail -n +2 >> content/_index.md +# Ensure that module documentation is also included in the report. +python3 "$TMP/doc/tools/doc_status.py" -u "$TMP/doc/classes" "$TMP"/modules/*/doc_classes | tail -n +2 >> content/_index.md # Build the website with optimizations enabled. hugo --minify