Skip to content

Commit

Permalink
TMP: fix node_modules missing
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed Dec 20, 2024
1 parent ede7c2e commit d3edd7a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@


def clean_dir(dir_path, filter):
if not os.path.exists(dir_path):
return

for item in os.listdir(dir_path):
item_path = os.path.join(dir_path, item)
if os.path.isdir(item_path) and item not in filter:
Expand Down

0 comments on commit d3edd7a

Please sign in to comment.