furnace/res/docpdf/make-doc-html.sh

17 lines
286 B
Bash
Raw Normal View History

2023-09-19 02:49:07 -04:00
#!/bin/bash
echo "compiling Furnace doc (HTML)..."
if [ ! -e .venv ]; then
python3 -m virtualenv .venv || exit 1
fi
source .venv/bin/activate
if [ ! -e .venv/req_installed ]; then
pip install -r requirements.txt || exit 1
touch .venv/req_installed
fi
python3 make_htmldoc.py