We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708f5d1 commit 921014bCopy full SHA for 921014b
ci/install.sh
@@ -1,17 +1,17 @@
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 \
+ --git rust-lang/mdbook \
15
--tag $tag \
16
--target x86_64-unknown-linux-musl
17
0 commit comments