From b29a61e51b14276edf0d2110901129ab4e92fc5e Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Mon, 20 Nov 2017 10:02:08 +0100 Subject: [PATCH] rustbuild: fix expectation message Signed-off-by: Marc-Antoine Perennou --- src/bootstrap/dist.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 9009be247a65..81b3b0441196 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -1166,7 +1166,7 @@ impl Step for Rustfmt { let cargofmt = builder.ensure(tool::Cargofmt { compiler: builder.compiler(stage, build.build), target - }).expect("Rustfmt to build: toolstate is testing"); + }).expect("Cargofmt to build: toolstate is testing"); install(&rustfmt, &image.join("bin"), 0o755); install(&cargofmt, &image.join("bin"), 0o755); let doc = image.join("share/doc/rustfmt");