aboutsummaryrefslogtreecommitdiff
path: root/check-book.sh
blob: 22289fef1e50b0f8059c51e51cb0a7eef954efde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

cd book/en/
mdbook build
cd ../../

cargo doc --features thumbv7-backend

mkdir -p book-target/book/
cp -r book/en/book/ book-target/book/en/
cp LICENSE-* book-target/book/en
cp -r target/doc/ book-target/api/

lychee --offline --format detailed book-target/book/en/

rm -rf book-target/