mirror of
https://github.com/nkbai/book.git
synced 2026-08-24 20:23:29 +08:00
21 lines
466 B
Bash
21 lines
466 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
mdbook build
|
|
|
|
# FIXME(rust-lang-nursery/mdbook#789) remove `--ignore-url` when that bug is fixed
|
|
linkchecker --ignore-url "print.html" book
|
|
|
|
# now check this as a directory of the bookshelf
|
|
rm -rf shelf
|
|
mkdir shelf
|
|
mv book shelf
|
|
# FIXME(rust-lang-nursery/mdbook#789) remove `--ignore-url` when that bug is fixed
|
|
linkchecker --ignore-url "print.html" shelf
|
|
|
|
mv shelf/book .
|
|
rmdir shelf
|
|
}
|
|
|
|
main
|