2019-12-06 23:35:43 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-10-24 08:48:03 +02:00
|
|
|
# Git pre-commit hook that checks the class reference syntax using make_rst.py.
|
2019-12-06 23:35:43 +01:00
|
|
|
|
2020-03-30 23:02:38 +02:00
|
|
|
# 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
|
|
|
|
|
2021-10-24 08:48:03 +02:00
|
|
|
$PYTHON doc/tools/make_rst.py doc/classes modules --dry-run
|