Files
embbed-rust/ci/script.sh
Philipp Hansch 103e14698e Replace nursery links with rust-lang links
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.
2020-01-27 07:11:13 +01:00

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