11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
export PYTHONPATH=$PWD/python
|
|
cd docs && make html && cd ..
|
|
|
|
cd site && jekyll b && cd ..
|
|
|
|
rm -rf site/_site/docs
|
|
cp -r docs/_build/html site/_site/docs
|