Skip to content

Commit 4369b63

Browse files
authored
Use NO_COLOR environment variable for doc_status.py (#30)
1 parent c9714e9 commit 4369b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ EOF
3535

3636
# Trim the first line of the output to get a valid Markdown table.
3737
# Ensure that module and platform documentation is also included in the report.
38-
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
38+
NO_COLOR=1 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
3939

4040
# Fade out `0/0` completion ratios as they can't be completed (there's nothing to document).
4141
sed -i 's:0/0:<span style="opacity\: 0.3">0/0</span>:g' content/_index.md

0 commit comments

Comments
 (0)