Skip to content

Commit 6c60060

Browse files
authored
Merge pull request #235 from sir-gon/develop
[REFACTOR] [CONFIG] Makefile clean action refactor.
2 parents 8ab4790 + 9a615d8 commit 6c60060

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ upgrade:
8181

8282
clean:
8383
pip3 freeze > unins ; pip3 uninstall -y -r unins ; rm unins
84-
rm .coverage
84+
rm -f .coverage
8585
rm -fr .pytest_cache
8686
rm -fr htmlcov
8787
rm -fr coverage
8888
find . -path "*/*.pyc" -delete -print
8989
find . -path "*/*.pyo" -delete -print
90-
find . -path "*/__pycache__" -type d -print -exec rm -r {} ';'
90+
find . -path "*/__pycache__" -type d -print -exec rm -fr {} ';'
9191

9292
compose/build: env
9393
docker-compose --profile testing build

0 commit comments

Comments
 (0)