From f494a6612d19cc5af474b9cf46634f9ebcd4ce8b Mon Sep 17 00:00:00 2001 From: Isaak Uchakaev Date: Sun, 6 Aug 2023 21:19:07 +0300 Subject: [PATCH] Fix clean.sh command --- scripts/clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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