Skip to content

Commit

Permalink
Rollup merge of #80574 - jyn514:clean-bootstrap, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Clean bootstrap artifacts on `x.py clean`

Closes #76519

r? `@Mark-Simulacrum`
  • Loading branch information
m-ou-se authored Jan 2, 2021
2 parents 1ab3466 + 139ef75 commit 4890c06
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bootstrap/clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pub fn clean(build: &Build, all: bool) {
} else {
rm_rf(&build.out.join("tmp"));
rm_rf(&build.out.join("dist"));
rm_rf(&build.out.join("bootstrap"));

for host in &build.hosts {
let entries = match build.out.join(host.triple).read_dir() {
Expand Down

0 comments on commit 4890c06

Please sign in to comment.