We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9663de0 + fdced17 commit 6ced155Copy full SHA for 6ced155
1 file changed
src/bootstrap/src/core/build_steps/doc.rs
@@ -1228,9 +1228,12 @@ impl Step for ErrorIndex {
1228
t!(fs::create_dir_all(&out));
1229
tool::ErrorIndex::command(builder, self.compilers)
1230
.arg("html")
1231
- .arg(out)
+ .arg(&out)
1232
.arg(&builder.version)
1233
.run(builder);
1234
+
1235
+ let index = out.join("error-index.html");
1236
+ builder.maybe_open_in_browser::<Self>(index);
1237
}
1238
1239
fn metadata(&self) -> Option<StepMetadata> {
0 commit comments