Skip to content

Commit 7de9b65

Browse files
committed
Avoid another gha group nesting
1 parent b3c7a7e commit 7de9b65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2087,10 +2087,11 @@ impl Step for ErrorIndex {
20872087
let mut tool = tool::ErrorIndex::command(builder);
20882088
tool.arg("markdown").arg(&output);
20892089

2090-
let _guard =
2090+
let guard =
20912091
builder.msg(Kind::Test, compiler.stage, "error-index", compiler.host, compiler.host);
20922092
let _time = util::timeit(&builder);
20932093
builder.run_quiet(&mut tool);
2094+
drop(guard);
20942095
// The tests themselves need to link to std, so make sure it is
20952096
// available.
20962097
builder.ensure(compile::Std::new(compiler, compiler.host));

0 commit comments

Comments
 (0)