Add: --force option to delete existing package
This commit is contained in:
parent
6a6d439aa2
commit
56bd015690
5 changed files with 69 additions and 10 deletions
8
Makefile
8
Makefile
|
|
@ -19,10 +19,10 @@ up:
|
|||
rebuild: docker-build up
|
||||
|
||||
clean:
|
||||
find . -name "*.pyc" -delete
|
||||
find . -name "__pycache__" -type d -exec rm -rf {} +
|
||||
find . -name "*.egg-info" -type d -exec rm -rf {} +
|
||||
find . -name ".pytest_cache" -type d -exec rm -rf {} +
|
||||
sudo find . -name "*.pyc" -delete
|
||||
sudo find . -name "__pycache__" -type d -exec rm -rf {} +
|
||||
sudo find . -name "*.egg-info" -type d -exec rm -rf {} +
|
||||
sudo find . -name ".pytest_cache" -type d -exec rm -rf {} +
|
||||
|
||||
build-all: fmt test docker-build
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue