scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Fri, 18 Jul 2008 18:14:01 +0000
changeset 53 57b4279d8c4e
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
First step of restructuring /trunk/ into a single App Engine app, avoiding all of the complicated scripts.

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."