streams/vendor/ezyang/htmlpurifier/maintenance/compile-doxygen.sh
2019-07-26 14:08:48 +10:00

11 lines
220 B
Bash
Executable file

#!/bin/bash
cd ..
mkdir docs/doxygen
rm -Rf docs/doxygen/*
doxygen 1>docs/doxygen/info.log 2>docs/doxygen/errors.log
if [ "$?" != 0 ]; then
cat docs/doxygen/errors.log
exit
fi
cd docs
tar czf doxygen.tgz doxygen