Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 94b94ed

Browse files
authored
Unrolled build for rust-lang#129695
Rollup merge of rust-lang#129695 - GuillaumeGomez:fix-clippy-rustdoc-path, r=onur-ozkan Fix path to run clippy on rustdoc Took me a while to find out that the path clippy expected was `src/tools/rustdoc` and not `src/librustdoc`. I think it makes more sense this way as most commands rely on source paths. r? ```@Kobzol```
2 parents acb4e8b + 4e6cd0f commit 94b94ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/clippy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ lint_any!(
313313
RemoteTestServer, "src/tools/remote-test-server", "remote-test-server";
314314
Rls, "src/tools/rls", "rls";
315315
RustAnalyzer, "src/tools/rust-analyzer", "rust-analyzer";
316-
Rustdoc, "src/tools/rustdoc", "clippy";
316+
Rustdoc, "src/librustdoc", "clippy";
317317
Rustfmt, "src/tools/rustfmt", "rustfmt";
318318
RustInstaller, "src/tools/rust-installer", "rust-installer";
319319
Tidy, "src/tools/tidy", "tidy";

0 commit comments

Comments
 (0)