scripts/build_epydocs.sh
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 11 Sep 2008 20:50:58 +0000
changeset 129 d9543d181c37
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Bugfix, invalid syntax noticed by epydoc.

#!/bin/bash

echo "Running epydoc..."
echo $1

epydoc --html -v --show-private --inheritance=included --graph=all \
  -o ../../wiki/html/epydoc $1

echo "Done."