From 8888c046de2cfe20691e3f4ec3194f4a76f8175c Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 9 Dec 2025 10:47:46 +0100 Subject: [PATCH] chore: make fpcc actually kind of fast - fix install_typos.sh script --- Makefile | 2 -- scripts/install_typos.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 32f2effb6..14594bb3f 100644 --- a/Makefile +++ b/Makefile @@ -1871,8 +1871,6 @@ fpcc: $(call run_recipe_with_details,check_md_docs_are_tested) $(call run_recipe_with_details,check_intra_md_links) $(call run_recipe_with_details,check_doc_paths_use_dash) - $(call run_recipe_with_details,clippy_fast) - $(call run_recipe_with_details,check_compile_tests) .PHONY: conformance # Automatically fix problems that can be fixed conformance: fix_newline fmt fmt_js diff --git a/scripts/install_typos.sh b/scripts/install_typos.sh index bba4396d6..a87213e50 100755 --- a/scripts/install_typos.sh +++ b/scripts/install_typos.sh @@ -36,7 +36,7 @@ do done if [[ "${rust_toolchain::1}" != "+" ]]; then - rust_toolchain=${rust_toolchain:"+${rust_toolchain}"} + rust_toolchain=${rust_toolchain:+"+${rust_toolchain}"} fi if ! which typos ; then