Skip to content

Commit d991a1f

Browse files
committed
update clean cmd
1 parent 7df9676 commit d991a1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A [Copier](https://github.com/copier-org/copier) template for a Python package b
77
## Usage
88

99
```sh
10-
uvx copier copy --trust gh:branchvincent/python-template <dest>
10+
uvx copier copy --trust gh:branchvincent/python-template .
1111
```
1212

1313
## Features

src/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ruff = ">=0.6"
2525
taskipy = ">=1"
2626

2727
[tool.taskipy.tasks]
28-
clean = { cmd = "rm -rf .mypy_cache/ .pytest_cache/ .ruff_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" }
28+
clean = { cmd = "rm -rf .*_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" }
2929
{% if docs -%}
3030
docs = { cmd = "mkdocs serve -f docs/mkdocs.yaml", help = "Serve documentation"}
3131
{% endif -%}

0 commit comments

Comments
 (0)