Skip to content

Commit 6e1361f

Browse files
committed
Fixes #103816 make --json work
1 parent 4c736a2 commit 6e1361f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bootstrap/builder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,7 @@ impl<'a> Builder<'a> {
689689
doc::UnstableBookGen,
690690
doc::TheBook,
691691
doc::Standalone,
692+
doc::JsonStd,
692693
doc::Std,
693694
doc::Rustc,
694695
doc::Rustdoc,

src/bootstrap/doc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ impl Step for JsonStd {
529529
}
530530

531531
fn make_run(run: RunConfig<'_>) {
532-
run.builder.ensure(Std { stage: run.builder.top_stage, target: run.target });
532+
run.builder.ensure(JsonStd { stage: run.builder.top_stage, target: run.target });
533533
}
534534

535535
/// Build JSON documentation for the standard library crates.

0 commit comments

Comments
 (0)