From 443eb3bf52184afc93d8f22ca42bc1923d652c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 13 Aug 2024 09:34:47 +0300 Subject: [PATCH] ci: Remove unnecessary --force from cargo install Part-of: --- ci/install-rust.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ci/install-rust.sh b/ci/install-rust.sh index 9f48b9745..9f2bd8cd2 100755 --- a/ci/install-rust.sh +++ b/ci/install-rust.sh @@ -26,22 +26,22 @@ if [ "$RUST_IMAGE_FULL" = "1" ]; then rustup component add clippy-preview rustup component add rustfmt - cargo install --locked --force cargo-deny + cargo install --locked cargo-deny if [ "$RUST_VERSION" = "1.71.1" ]; then - cargo install --locked --force cargo-outdated + cargo install --locked cargo-outdated else # Don't use --locked because time-0.3.30 does not build with 1.80 or newer - cargo install --force cargo-outdated + cargo install cargo-outdated fi - cargo install --locked --force typos-cli --version "1.19.0" + cargo install --locked typos-cli --version "1.19.0" # Coverage tools rustup component add llvm-tools-preview if [ "$RUST_VERSION" = "1.71.1" ]; then - cargo install --locked --force grcov + cargo install --locked grcov else # Don't use --locked because time-0.3.30 does not build with 1.80 or newer - cargo install --force grcov + cargo install grcov fi fi @@ -55,5 +55,5 @@ if [ "$RUST_VERSION" = "nightly" ]; then rustup component add rustfmt --toolchain nightly # Documentation tools - cargo install --locked --force rustdoc-stripper + cargo install --locked rustdoc-stripper fi