mirror of
https://github.com/nkbai/book.git
synced 2026-08-23 19:53:31 +08:00
Both repos have been moved to the `rust-lang` org and the links are still redirecting properly. This way we just avoid the redirect and make the link shorter.
22 lines
466 B
Bash
22 lines
466 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
mdbook build
|
|
mdbook test
|
|
|
|
# FIXME(rust-lang/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/mdbook#789) remove `--ignore-url` when that bug is fixed
|
|
linkchecker --ignore-url "print.html" shelf
|
|
|
|
mv shelf/book .
|
|
rmdir shelf
|
|
}
|
|
|
|
main
|