Skip to content

Commit 1860719

Browse files
authored
Remove buck-out on clean ET install (#11641)
### Summary Removing `buck-out` directory on clean builds. `Fixes #<#11564>` [11564](#11564). ### Test plan Ran a few of the scripts in the `examples` directory intermixing `./intsall_executorch.sh --clean`. Saw no problems.
1 parent 56392aa commit 1860719

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

install_executorch.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ def clean():
4747
for d in dirs:
4848
print(f"Cleaning {d}...")
4949
shutil.rmtree(d, ignore_errors=True)
50+
print("Cleaning buck-out/...")
51+
shutil.rmtree("buck-out/", ignore_errors=True)
5052
print("Done cleaning build artifacts.")
5153

5254

0 commit comments

Comments
 (0)