You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codefirst-docdeployer/generators/doxygen.sh

15 lines
230 B

GEN_PATH="/docs/doxygen"
generate() {
if [ ! -f "$1"/Doxyfile ]; then
echo "doxygen generator error : file $1/Doxyfile is missing" >&2
exit 1
fi
doxygen "$1"/Doxyfile
mkdir -p $GEN_PATH
mv html/* $GEN_PATH
}