From 958b4568734b03c7f29da316c83a46d3b89a6c72 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 13 Feb 2023 07:53:32 -0800 Subject: [PATCH] Also make sure releases use --locked If it somehow gets out of sync, then the release process otherwise wouldn't catch it. --- ci/make-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/make-release.sh b/ci/make-release.sh index 8a62b700..64ef84b9 100755 --- a/ci/make-release.sh +++ b/ci/make-release.sh @@ -17,7 +17,7 @@ then export "CARGO_TARGET_$(echo $target | tr a-z- A-Z_)_LINKER"=rust-lld fi export CARGO_PROFILE_RELEASE_LTO=true -cargo build --bin mdbook --release --target $target +cargo build --locked --bin mdbook --release --target $target cd target/$target/release case $1 in ubuntu*)