From 770d30377a18af3a90aba7b52a39cadc12f05af5 Mon Sep 17 00:00:00 2001 From: teapot4195 Date: Sun, 29 Jan 2023 13:35:37 -0500 Subject: [PATCH] When stamp doesn't exist, should say Error, and print path to stamp file --- src/bootstrap/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 522b3b7e851ff..3b9dba4109d3e 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -1433,7 +1433,8 @@ impl Build { if !stamp.exists() { eprintln!( - "Warning: Unable to find the stamp file, did you try to keep a nonexistent build stage?" + "Error: Unable to find the stamp file {}, did you try to keep a nonexistent build stage?", + stamp.display() ); crate::detail_exit(1); }