Skip to content

Commit

Permalink
Fix cleanup bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Mar 7, 2022
1 parent 63fa027 commit 7d416b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlonmcu/setup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def clean_dependencies(self, interactive=True):
for subdir in subdirs:
full_path = deps_dir / subdir
print(f"Removing contents of {full_path} ...")
shutil.rmtree(full_path)
shutil.rmtree(full_path, ignore_errors=True)
full_path.mkdir(exist_ok=True)

def process_features(self, features):
Expand Down

0 comments on commit 7d416b6

Please sign in to comment.