We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f0642 commit 65186e0Copy full SHA for 65186e0
src/bootstrap/lib.rs
@@ -1431,6 +1431,13 @@ impl Build {
1431
return Vec::new();
1432
}
1433
1434
+ if !stamp.exists() {
1435
+ eprintln!(
1436
+ "Warning: Unable to find the stamp file, did you try to keep a nonexistent build stage?"
1437
+ );
1438
+ crate::detail_exit(1);
1439
+ }
1440
+
1441
let mut paths = Vec::new();
1442
let contents = t!(fs::read(stamp), &stamp);
1443
// This is the method we use for extracting paths from the stamp file passed to us. See
0 commit comments