Skip to content
/ rust Public
forked from rust-lang/rust

Commit a0abd61

Browse files
committed
fix missing rustfmt for apple darwin
1 parent a56b1d2 commit a0abd61

File tree

1 file changed

+9
-3
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+9
-3
lines changed

src/bootstrap/src/core/build_steps/dist.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1585,9 +1585,15 @@ impl Step for Extended {
15851585
prepare("cargo");
15861586
prepare("rust-std");
15871587
prepare("rust-analysis");
1588-
prepare("clippy");
1589-
prepare("rust-analyzer");
1590-
for tool in &["rust-docs", "miri", "rustc-codegen-cranelift"] {
1588+
1589+
for tool in &[
1590+
"clippy",
1591+
"rustfmt",
1592+
"rust-analyzer",
1593+
"rust-docs",
1594+
"miri",
1595+
"rustc-codegen-cranelift",
1596+
] {
15911597
if built_tools.contains(tool) {
15921598
prepare(tool);
15931599
}

0 commit comments

Comments
 (0)