Skip to content

Commit

Permalink
Add the remove command to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Jan 17, 2021
1 parent b3da32b commit 710a1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ clean-build: ## remove build artifacts
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.egg' -exec rm -fr {} +

clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
Expand Down

0 comments on commit 710a1fe

Please sign in to comment.