about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2022-12-27 18:28:12 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2022-12-27 18:28:12 +0100
commitc5bc87713f688a36ecbcaf718a1274b0674eaee5 (patch)
tree29e51208c18af48307de12000e964aaf93700694 /src/bootstrap
parentb07a1e3f5a78f0601b60e1763cd7055ceb9ab50f (diff)
downloadrust-c5bc87713f688a36ecbcaf718a1274b0674eaee5.tar.gz
rust-c5bc87713f688a36ecbcaf718a1274b0674eaee5.zip
Make `x clean` also clean the stamp file
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/clean.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/clean.rs b/src/bootstrap/clean.rs
index 069f3d6acf1..7aa81893542 100644
--- a/src/bootstrap/clean.rs
+++ b/src/bootstrap/clean.rs
@@ -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() {