summaryrefslogtreecommitdiff
path: root/regen-docs
diff options
context:
space:
mode:
authorianb <devnull@localhost>2008-05-20 21:16:04 +0000
committerianb <devnull@localhost>2008-05-20 21:16:04 +0000
commitef7c20c2bc7a3f47304aa260eedc39b9bbaac59d (patch)
tree6a298777929c3545dcccd6bfacdc777c904c4326 /regen-docs
parent28a4e102f15680300bd25b311d51e13beeb940de (diff)
downloadpaste-ef7c20c2bc7a3f47304aa260eedc39b9bbaac59d.tar.gz
update version in conf.py, add generation/upload script
Diffstat (limited to 'regen-docs')
-rwxr-xr-xregen-docs9
1 files changed, 9 insertions, 0 deletions
diff --git a/regen-docs b/regen-docs
new file mode 100755
index 0000000..c98763d
--- /dev/null
+++ b/regen-docs
@@ -0,0 +1,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/
+fi