mirror of
https://github.com/nkbai/book.git
synced 2026-09-02 20:57:54 +08:00
Both repos have been moved to the `rust-lang` org and the links are still redirecting properly. This way we just avoid the redirect and make the link shorter.
18 lines
477 B
Bash
18 lines
477 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
local tag=$(git ls-remote --tags --refs --exit-code \
|
|
https://github.com/rust-lang/mdbook \
|
|
| cut -d/ -f3 \
|
|
| grep -E '^v[0-9\.]+$' \
|
|
| sort --version-sort \
|
|
| tail -n1)
|
|
|
|
curl -LSfs https://japaric.github.io/trust/install.sh | \
|
|
sh -s -- --git rust-lang/mdbook --tag $tag
|
|
|
|
pip install linkchecker --user
|
|
}
|
|
|
|
main
|