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/mdbook.sh

15 lines
238 B

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