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

13 lines
231 B

# == MDBOOK GENERATOR ==
generate() {
if [ ! -f "$1"/book.toml ]; then
echo "mdbook generator error : file $1/book.toml is missing" >&2
exit 1
fi
mkdir -p $GENERATION_PATH
mdbook build "$1" -d $GENERATION_PATH
}