blob: 6d9cad348d101626038d6e5cdd91f1150ff9be7a [file] [log] [blame]
set -euxo pipefail
main() {
mdbook build
mdbook test
linkchecker book
# now check this as a directory of the bookshelf
rm -rf shelf
mkdir shelf
mv book shelf
linkchecker shelf
mv shelf/book .
rmdir shelf
}
main