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