From 6dd8be2ab2939b6e6c955d072004a4b9107bef0c Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 3 Sep 2025 15:07:26 -0700 Subject: [PATCH] Use the helper for the CI version string This uses the new guide-helper preprocessor to insert the version string on the continuous integration guide page. This should make it easier to bump new versions. --- guide/src/continuous-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 8662c3c9..1abae6eb 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex ```sh mkdir bin -curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.52/mdbook-v0.4.52-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/{{ mdbook-version }}/mdbook-{{ mdbook-version }}-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```