From d4745b633b8885ce0fe644357ea41e1c9aa54b71 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Tue, 23 Dec 2025 18:41:08 +0100 Subject: [PATCH] check.sh: don't build docs of dependencies We only run `cargo doc` here to check for issues with fish's documentation, so there is no need to build docs of dependencies. Closes #12201 --- build_tools/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/check.sh b/build_tools/check.sh index f6a808571..5b4480107 100755 --- a/build_tools/check.sh +++ b/build_tools/check.sh @@ -81,7 +81,7 @@ fi cargo test --no-default-features --workspace --all-targets cargo test --doc --workspace if $lint; then - cargo doc --workspace + cargo doc --workspace --no-deps fi FISH_GETTEXT_EXTRACTION_DIR=$template_dir "$workspace_root/tests/test_driver.py" "$build_dir"