Skip to content

Commit 97e6aba

Browse files
authored
Rollup merge of #107448 - Teapot4195:pr-107397-followup, r=Mark-Simulacrum
When stamp doesn't exist, should say Error, and print path to stamp file Follow up pr for #107397
2 parents dd315fd + 770d303 commit 97e6aba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,8 @@ impl Build {
14331433

14341434
if !stamp.exists() {
14351435
eprintln!(
1436-
"Warning: Unable to find the stamp file, did you try to keep a nonexistent build stage?"
1436+
"Error: Unable to find the stamp file {}, did you try to keep a nonexistent build stage?",
1437+
stamp.display()
14371438
);
14381439
crate::detail_exit(1);
14391440
}

0 commit comments

Comments
 (0)