Skip to content

Commit

Permalink
Fix clean.sh command
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Aug 6, 2023
1 parent 779d47b commit f494a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
rm -rf build/ dist/ .cache/ .mypy_cache/ .pytest_cache/ .benchmarks/ docs/_build mimesis.egg-info/
rm -rf build/ dist/ .cache/ .mypy_cache/ .pytest_cache/ .benchmarks/ docs/_build mimesis.egg-info/ .ipynb_checkpoints/
rm -f .coverage coverage.xml

0 comments on commit f494a66

Please sign in to comment.