Skip to content

Commit 921014b

Browse files
committed
Update CI install to use latest mdbook, reverting 09753a1
1 parent 708f5d1 commit 921014b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ci/install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
set -euxo pipefail
22

33
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 \
4+
local tag=$(git ls-remote --tags --refs --exit-code \
5+
https://github.com/rust-lang/mdbook \
66
| cut -d/ -f3 \
7-
| grep -E '^v0.2.[0-9]+$' \
7+
| grep -E '^v[0-9\.]+$' \
88
| sort --version-sort \
99
| tail -n1)
10-
local tag="v0.2.1"
10+
1111
curl -LSfs https://japaric.github.io/trust/install.sh | \
1212
sh -s -- \
1313
--force \
14-
--git rust-lang-nursery/mdBook \
14+
--git rust-lang/mdbook \
1515
--tag $tag \
1616
--target x86_64-unknown-linux-musl
1717

0 commit comments

Comments
 (0)