blob: 873393942568decc886137640d0b69086beb02db [file] [log] [blame]
set -euxo pipefail
main() {
mdbook build
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