Files
embbed-rust/ci/script.sh
Philipp Hansch b778f530cc CI: Remove workaround for mdBook issue
rust-lang/mdbook#789 has been fixed and this was working locally without
the `ignore-url`.
2020-01-27 07:27:17 +01:00

20 lines
256 B
Bash

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