From 552717641b27b347b46cd41052102598ca44cef7 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Sat, 28 Sep 2024 12:10:58 -0400 Subject: [PATCH] update clean cmd --- src/pyproject.toml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyproject.toml.jinja b/src/pyproject.toml.jinja index fe90d26..806648f 100644 --- a/src/pyproject.toml.jinja +++ b/src/pyproject.toml.jinja @@ -25,7 +25,7 @@ ruff = ">=0.6" taskipy = ">=1" [tool.taskipy.tasks] -clean = { cmd = "rm -rf .mypy_cache/ .pytest_cache/ .ruff_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" } +clean = { cmd = "rm -rf .*_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" } {% if docs -%} docs = { cmd = "mkdocs serve -f docs/mkdocs.yaml", help = "Serve documentation"} {% endif -%}