mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Use statically compiled mdbook
This commit is contained in:
parent
7406f77a4e
commit
7e01b1a08e
1 changed files with 9 additions and 2 deletions
|
@ -15,7 +15,6 @@ main() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rustup target add $TARGET
|
rustup target add $TARGET
|
||||||
|
|
||||||
mkdir qemu
|
mkdir qemu
|
||||||
curl -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-system-arm-2.12.0 > qemu/qemu-system-arm
|
curl -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-system-arm-2.12.0 > qemu/qemu-system-arm
|
||||||
chmod +x qemu/qemu-system-arm
|
chmod +x qemu/qemu-system-arm
|
||||||
|
@ -23,7 +22,15 @@ main() {
|
||||||
pip install linkchecker --user
|
pip install linkchecker --user
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_crate mdbook 0.3.1
|
# Download binary mdbook and add to path
|
||||||
|
curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.1/mdbook-v0.3.1-x86_64-unknown-linux-gnu.tar.gz > mdbook.tar.gz
|
||||||
|
tar -xf mdbook.tar.gz
|
||||||
|
mkdir -p mdbook-bin
|
||||||
|
mv mdbook mdbook-bin/
|
||||||
|
PATH=$(pwd)/mdbook-bin:$PATH
|
||||||
|
which mdbook
|
||||||
|
|
||||||
|
#install_crate mdbook 0.3.1
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
|
Loading…
Reference in a new issue