mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fixed errors in makerst pre-commit hook
(cherry picked from commit 619354fb2c
)
This commit is contained in:
parent
66e4c8be23
commit
d4c77e60c0
@ -341,7 +341,7 @@ def make_rst_class(class_def, state, dry_run, output_dir): # type: (ClassDef, S
|
||||
class_name = class_def.name
|
||||
|
||||
if dry_run:
|
||||
f = open(os.devnull, "w")
|
||||
f = open(os.devnull, "w", encoding="utf-8")
|
||||
else:
|
||||
f = open(os.path.join(output_dir, "class_" + class_name.lower() + '.rst'), 'w', encoding='utf-8')
|
||||
|
||||
|
@ -2,4 +2,11 @@
|
||||
|
||||
# Git pre-commit hook that checks the class reference syntax using makerst.py.
|
||||
|
||||
doc/tools/makerst.py doc/classes modules --dry-run
|
||||
# Workaround because we can't execute the .py file directly on windows
|
||||
PYTHON=python
|
||||
py_ver=$($PYTHON -c "import sys; print(sys.version_info.major)")
|
||||
if [[ "$py_ver" != "3" ]]; then
|
||||
PYTHON+=3
|
||||
fi
|
||||
|
||||
$PYTHON doc/tools/makerst.py doc/classes modules --dry-run
|
||||
|
Loading…
Reference in New Issue
Block a user