Make x clean also clean the stamp file

This commit is contained in:
Albert Larsan 2022-12-27 18:28:12 +01:00
parent b07a1e3f5a
commit c5bc87713f
No known key found for this signature in database
GPG Key ID: F91FB20C20E1306C

View File

@ -21,6 +21,7 @@ pub fn clean(build: &Build, all: bool) {
rm_rf(&build.out.join("tmp"));
rm_rf(&build.out.join("dist"));
rm_rf(&build.out.join("bootstrap"));
rm_rf(&build.out.join("rustfmt.stamp"));
for host in &build.hosts {
let entries = match build.out.join(host.triple).read_dir() {