Files
embbed-rust/ci/script.sh
2018-09-26 16:55:12 +02:00

19 lines
240 B
Bash

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