We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9180d2 commit 4fe4a39Copy full SHA for 4fe4a39
src/bootstrap/src/core/build_steps/dist.rs
@@ -1596,15 +1596,9 @@ impl Step for Extended {
1596
prepare("cargo");
1597
prepare("rust-std");
1598
prepare("rust-analysis");
1599
-
1600
- for tool in &[
1601
- "clippy",
1602
- "rustfmt",
1603
- "rust-analyzer",
1604
- "rust-docs",
1605
- "miri",
1606
- "rustc-codegen-cranelift",
1607
- ] {
+ prepare("clippy");
+ prepare("rust-analyzer");
+ for tool in &["rust-docs", "miri", "rustc-codegen-cranelift"] {
1608
if built_tools.contains(tool) {
1609
prepare(tool);
1610
}
0 commit comments