File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ description = "Documentation for the Kani Rust Verifier"
66authors = [" Kani Developers" ]
77src = " src"
88language = " en"
9- multilingual = false
109
1110[output .html ]
1211site-url = " /kani/"
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ title = "Kani RFC Book"
55description = " Design documents for Kani Rust Verifier"
66authors = [" Kani Developers" ]
77language = " en"
8- multilingual = false
98src = " src"
109
1110[output .html ]
Original file line number Diff line number Diff line change @@ -20,17 +20,16 @@ if [ $(uname -m) = "arm64" ]; then
2020 MDBOOK=mdbook
2121else
2222 # Download mdbook release (vs spending time building it via cargo install)
23- MDBOOK_VERSION=v0.4.18
23+ MDBOOK_VERSION=v0.5.2
2424 FILE=" mdbook-${MDBOOK_VERSION} -x86_64-unknown-linux-gnu.tar.gz"
2525 URL=" https://github.com/rust-lang/mdBook/releases/download/${MDBOOK_VERSION} /$FILE "
26- EXPECTED_HASH=" d276b0e594d5980de6a7917ce74c348f28d3cb8b353ca4eaae344ae8a4c40bea"
27- if [ ! -x mdbook ]; then
26+ EXPECTED_HASH=" 084e4342ba564db270108763e404a7d1f309d932651a22484e93c0dc1a071f6d"
27+ MDBOOK=${SCRIPT_DIR} /mdbook
28+ if [ ! -x ${MDBOOK} ]; then
2829 curl -sSL -o " $FILE " " $URL "
2930 echo " $EXPECTED_HASH $FILE " | sha256sum -c -
3031 tar zxf $FILE
3132 MDBOOK=${SCRIPT_DIR} /mdbook
32- else
33- MDBOOK=mdbook
3433 fi
3534fi
3635
You can’t perform that action at this time.
0 commit comments