From 734acfce645b9ac568cc4fd0072ba0a45efef500 Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Fri, 12 Jun 2020 12:23:15 +0200 Subject: [PATCH] Revert "Try_run must only be used if toolstate is populated" This reverts commit 6f015768c28a6e4cf163967cb62b70c645791858. --- src/bootstrap/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 163132f563425..a99e39ed35428 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -553,7 +553,7 @@ impl Step for Clippy { builder.add_rustc_lib_path(compiler, &mut cargo); - builder.run(&mut cargo.into()); + try_run(builder, &mut cargo.into()); } }