d45351f413
This is automatically enabled on all platforms including Windows 10 and later, whenever a TTY environment is detected. In non-TTY environments such as CI, this can be forced using the `--color` command line argument.
12 lines
368 B
Bash
Executable file
12 lines
368 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Git pre-commit hook that checks the class reference syntax using make_rst.py.
|
|
|
|
# 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/make_rst.py doc/classes modules --dry-run --color
|