Skip to content

Commit f9c20d0

Browse files
committed
Avoid deleting .so files in .direnv or equivalent.
1 parent 4d0e0e1 commit f9c20d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ build:
3030
python setup.py build_ext --inplace
3131

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

0 commit comments

Comments
 (0)