Skip to content

Commit

Permalink
Fix make clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Feb 11, 2024
1 parent aa33161 commit 87f58c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ build:
python setup.py build_ext --inplace

clean:
find . -name '*.pyc' -o -name '*.so' -delete
find . -name '*.pyc' -delete -o -name '*.so' -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 87f58c7

Please sign in to comment.