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

DOCS_DIR=$1

cd docs
make html
cd -

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

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