9 lines
234 B
Bash
Executable file
9 lines
234 B
Bash
Executable file
#!/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
|