scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Tue, 26 Aug 2008 21:24:50 +0000
changeset 105 b7a32c7e2a99
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Remove the obsolete scripts left over from when trunk/app did not contain the entire Google App Engine image. Patch by: Todd Larsen Review by: to-be-reviewed

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."