We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 708f5d1 + e268b5c commit f1c96f9Copy full SHA for f1c96f9
ci/install.sh
@@ -1,19 +1,18 @@
1
set -euxo pipefail
2
3
main() {
4
- # install latest mdbook v0.2.x release
5
- local tag=$(git ls-remote --tags --refs --exit-code https://github.com/rust-lang-nursery/mdbook \
+ local tag=$(git ls-remote --tags --refs --exit-code \
+ https://github.com/rust-lang/mdbook \
6
| cut -d/ -f3 \
7
- | grep -E '^v0.2.[0-9]+$' \
+ | grep -E '^v[0-9\.]+$' \
8
| sort --version-sort \
9
| tail -n1)
10
- local tag="v0.2.1"
+
11
curl -LSfs https://japaric.github.io/trust/install.sh | \
12
sh -s -- \
13
--force \
14
- --git rust-lang-nursery/mdBook \
15
- --tag $tag \
16
- --target x86_64-unknown-linux-musl
+ --git rust-lang/mdbook \
+ --tag $tag
17
18
rustup target add thumbv7em-none-eabihf
19
0 commit comments