Skip to content

Commit

Permalink
Avoid deleting .so files in .direnv or equivalent.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Aug 20, 2024
1 parent 4d0e0e1 commit f9c20d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ build:
python setup.py build_ext --inplace

clean:
find . -name '*.pyc' -delete -o -name '*.so' -delete
find src -name '*.so' -delete
find . -name '*.pyc' -delete
find . -name __pycache__ -delete
rm -rf .coverage .mypy_cache build compliance/reports dist docs/_build htmlcov MANIFEST src/websockets.egg-info

0 comments on commit f9c20d0

Please sign in to comment.