From 4fc119a55ca131f3b624eea9aebf511f5d241d7f Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 13 Jul 2023 16:26:52 +0200 Subject: [PATCH] Add platform exporters to the list of classes --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 18ca25c..51fd374 100755 --- a/build.sh +++ b/build.sh @@ -34,8 +34,8 @@ before starting to work on a class. EOF # Trim the first line of the output to get a valid Markdown table. -# Ensure that module documentation is also included in the report. -python3 "$GODOT_TMP_DIR/doc/tools/doc_status.py" -u "$GODOT_TMP_DIR/doc/classes" "$GODOT_TMP_DIR"/modules/*/doc_classes | tail -n +2 >> content/_index.md +# Ensure that module and platform documentation is also included in the report. +python3 "$GODOT_TMP_DIR/doc/tools/doc_status.py" -u "$GODOT_TMP_DIR/doc/classes" "$GODOT_TMP_DIR"/modules/*/doc_classes "$GODOT_TMP_DIR"/platform/*/doc_classes | tail -n +2 >> content/_index.md # Fade out `0/0` completion ratios as they can't be completed (there's nothing to document). sed -i 's:0/0:0/0:g' content/_index.md