diff --git a/scripts/clean.sh b/scripts/clean.sh index 19f6c8cd6..91fa5ade5 100644 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -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