Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2316749

Browse files
committedOct 15, 2024
fix missing rustfmt for apple darwin
1 parent f5577a8 commit 2316749

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
@@ -1591,9 +1591,15 @@ impl Step for Extended {
15911591
prepare("cargo");
15921592
prepare("rust-std");
15931593
prepare("rust-analysis");
1594-
prepare("clippy");
1595-
prepare("rust-analyzer");
1596-
for tool in &["rust-docs", "miri", "rustc-codegen-cranelift"] {
1594+
1595+
for tool in &[
1596+
"clippy",
1597+
"rustfmt",
1598+
"rust-analyzer",
1599+
"rust-docs",
1600+
"miri",
1601+
"rustc-codegen-cranelift",
1602+
] {
15971603
if built_tools.contains(tool) {
15981604
prepare(tool);
15991605
}

0 commit comments

Comments
 (0)
Failed to load comments.