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

13 lines
244 B

GEN_PATH="/docs/doxygen"
generate() {
mkdir -p /docs/doxygen/
if [ ! -f "$1"/Doxyfile ]; then
echo "erreure generateur doxygen : Le fichier $1/Doxyfile est manquant" >&2
exit 1
fi
doxygen "$1"/Doxyfile
mv html/* $GEN_PATH
}