Merge pull request #37445 from nekomatata/hook-makerst-fix
Fixed errors in makerst pre-commit hook
This commit is contained in:
commit
dfed5efea3
2 changed files with 9 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue