more readthedocs fixes?
This commit is contained in:
parent
317d106b9c
commit
f5afd0a8be
@ -7,6 +7,7 @@ version: 2
|
||||
|
||||
# Build documentation in the docs/ directory with Sphinx
|
||||
sphinx:
|
||||
builder: html
|
||||
configuration: sphinx-docs/source/conf.py
|
||||
|
||||
# Optionally set the version of Python and requirements required to build your docs
|
||||
|
@ -3,20 +3,22 @@
|
||||
|
||||
echo "Generating docs!"
|
||||
|
||||
if command -v 'sphinx-apidoc' >/dev/null; then
|
||||
if ! command -v 'sphinx-apidoc'; then
|
||||
source venv/bin/activate
|
||||
pip install sphinx
|
||||
fi
|
||||
|
||||
if [[ $1 == 'generate' ]]; then
|
||||
|
||||
PYTHONPATH=../../ sphinx-apidoc -e -f -o . ../../riscemu ../../riscemu/colors.py ../../riscemu/__main__.py
|
||||
echo "only generating, not building..."
|
||||
rm ./modules.rst
|
||||
exit 0
|
||||
fi
|
||||
|
||||
PYTHONPATH=. sphinx-apidoc -e -f -o sphinx-docs/source riscemu riscemu/colors.py riscemu/__main__.py
|
||||
|
||||
rm sphinx-docs/source/modules.rst
|
||||
|
||||
cd sphinx-docs
|
||||
|
||||
make html
|
||||
|
Loading…
Reference in New Issue
Block a user