Skip to content
Snippets Groups Projects
make_docs.sh 158 B
Newer Older
#!/bin/sh
set -e


cd docs
make html
cd -

mkdir -p "$DOCS_DIR"
mv -n docs/_build/html/* "$DOCS_DIR"

echo "Moved docs to to: $(pwd)/$DOCS_DIR"