Support split projects.

Originally committed to SVN as r3550.
This commit is contained in:
Amar Takhar 2009-09-26 08:45:19 +00:00
parent 3bc81569b3
commit 90da141dd4
1 changed files with 20 additions and 3 deletions

View File

@ -1,9 +1,26 @@
#!/bin/sh
if test -z "$1"; then
echo "You must provide a project name."
exit;
fi
# Remove from any previous runs
rm -f docs/doxygen/doxygen.log
# Help buildbot find the doxygen.log
ln -s docs/doxygen/doxygen.log
cd docs/doxygen
sh -x ./gen.sh /usr/www/docs.aegisub.org/source
case "$1" in
"aegisub")
OUTPUT="source"
;;
"reporter")
OUTPUT="reporter"
;;
esac
chmod 0644 /usr/www/docs.aegisub.org/source/*
cd docs/doxygen
sh -x ./gen.sh $1 /usr/www/docs.aegisub.org/${OUTPUT}
chmod 0644 /usr/www/docs.aegisub.org/${OUTPUT}/*