Files
deb-python-dcos/bin/doc.sh
Kevin Klues f51e3a614a Rewrote the build system to be more flexible / cross platform.
We can now build the CLI in a cross platform way (linux/mac/windows) all
from the Makefile with relocatable VENV, DIST, and TOX directories. We
can also optionally build in a docker container on platforms where
docker is available.
2017-07-06 23:23:45 -07:00

9 lines
205 B
Bash
Executable File

#!/bin/bash
CURRDIR=$(dirname "${0}")
source ${CURRDIR}/common.sh
echo "Building documentation..."
${BUILDDIR}/${VENV}/${BIN}/sphinx-build${EXE} -W -b html pydoc pydoc/_build
echo "Documentation built."