summaryrefslogtreecommitdiff
path: root/regen-docs
blob: f8dad75e09d06e378d3f86caeb8033519c1df603 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

mkdir -p docs/_static docs/_build
sphinx-build -E -b html docs/ docs/_build || exit 1
if [ "$1" = "publish" ] ; then
  cd docs/
  echo "Uploading files..."
  scp -r _build/* ianb@webwareforpython.org:/home/paste/htdocs/deploy/
fi