Skip to content

Commit

Permalink
fix: syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cofin committed Dec 6, 2024
1 parent 5ceb453 commit da04f8b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ upgrade: ## Upgrade all dependencies
.PHONY: clean
clean: ## Cleanup temporary build artifacts
@echo "${INFO} Cleaning working directory... 🧹"
@rm -rf .pytest_cache .ruff_cache .hypothesis build/ dist/ .eggs/ \
.find . -name '*.egg-info' -exec rm -rf {} + \
.find . -type f --name '*.egg' -exec rm -f {} + \
.find . -name '*.pyc' -exec rm -f {} + \
.find . -name '*.pyo' -exec rm -f {} + \
.find . -name '*~' -exec rm -f {} + \
.find . -name '__pycache__' -exec rm -rf {} + \
.find . -name '.ipynb_checkpoints' -exec rm -rf {} + \
.rm -rf .coverage coverage.xml coverage.json htmlcov/ .pytest_cache tests/.pytest_cache .mypy_cache .unasyncd_cache/
@rm -rf .pytest_cache .ruff_cache .hypothesis build/ dist/ .eggs/ .coverage coverage.xml coverage.json htmlcov/ .pytest_cache tests/.pytest_cache .mypy_cache .unasyncd_cache/
@find . -name '*.egg-info' -exec rm -rf {} +
@find . -type f -name '*.egg' -exec rm -f {} +
@find . -name '*.pyc' -exec rm -f {} +
@find . -name '*.pyo' -exec rm -f {} +
@find . -name '*~' -exec rm -f {} +
@find . -name '__pycache__' -exec rm -rf {} +
@find . -name '.ipynb_checkpoints' -exec rm -rf {} +
@rm -rf
@$(MAKE) docs-clean
@echo "${OK} Cleaned working directory 🧹 ✨"

Expand Down

0 comments on commit da04f8b

Please sign in to comment.