Skip to content

Commit cc5a1ea

Browse files
committed
VS Code: do not use shell unless necessary
1 parent f0efcaa commit cc5a1ea

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • {{ cookiecutter.pypi_package_name }}/.vscode

{{ cookiecutter.pypi_package_name }}/.vscode/tasks.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% if cookiecutter.include_executable == "y" -%}
77
{
88
"label": "{{ cookiecutter.project_title }}: Show usage help",
9-
"type": "shell",
9+
"type": "process",
1010
"command": "uv",
1111
"args": [
1212
"run",
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"label": "{{ cookiecutter.project_title }}: Run hello",
25-
"type": "shell",
25+
"type": "process",
2626
"command": "uv",
2727
"args": [
2828
"run",
@@ -41,7 +41,7 @@
4141
},
4242
{
4343
"label": "{{ cookiecutter.project_title }}: Run hello '{{ cookiecutter.author_full_name }}'",
44-
"type": "shell",
44+
"type": "process",
4545
"command": "uv",
4646
"args": [
4747
"run",
@@ -59,7 +59,7 @@
5959
{% endif -%}
6060
{
6161
"label": "{{ cookiecutter.project_title }}: Install/update local dependencies",
62-
"type": "shell",
62+
"type": "process",
6363
"command": "uv",
6464
"args": [
6565
"update"

0 commit comments

Comments
 (0)