about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-17 17:42:59 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-20 09:42:53 +0000
commit7de9b654b7888ee387a9907f7a5f9b824ca053be (patch)
treec84fc9ae62e2ab7359f8f4b5ea73d12626b00e78
parentb3c7a7e749761b61ee587fda5fa24aae444865e9 (diff)
downloadrust-7de9b654b7888ee387a9907f7a5f9b824ca053be.tar.gz
rust-7de9b654b7888ee387a9907f7a5f9b824ca053be.zip
Avoid another gha group nesting
-rw-r--r--src/bootstrap/test.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 44b8c2d8c01..c69b21488d2 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -2087,10 +2087,11 @@ impl Step for ErrorIndex {
         let mut tool = tool::ErrorIndex::command(builder);
         tool.arg("markdown").arg(&output);
 
-        let _guard =
+        let guard =
             builder.msg(Kind::Test, compiler.stage, "error-index", compiler.host, compiler.host);
         let _time = util::timeit(&builder);
         builder.run_quiet(&mut tool);
+        drop(guard);
         // The tests themselves need to link to std, so make sure it is
         // available.
         builder.ensure(compile::Std::new(compiler, compiler.host));