From 4dedb5830f65f79ee95701afd3d40ed13d8a346d Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Fri, 22 Jul 2022 17:59:15 +0200 Subject: [PATCH] Use compiler.stage Co-authored-by: Joshua Nelson --- src/bootstrap/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index 972785c0cf7..cfeb1c9d607 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -351,7 +351,7 @@ impl Step for RustAnalyzer { builder.info(&format!( "Checking stage{} {} artifacts ({} -> {})", - builder.top_stage, "rust-analyzer", &compiler.host.triple, target.triple + compiler.stage, "rust-analyzer", &compiler.host.triple, target.triple )); run_cargo(builder, cargo, args(builder), &stamp(builder, compiler, target), vec![], true);