Skip to content

Commit

Permalink
Remove environment activation from VSCode tasks. Let uv take care of it.
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Feb 3, 2025
1 parent babe52b commit 5ca2273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
{
"label": "Compile resources",
"type": "shell",
"command": ".venv/Scripts/Activate.ps1; scripts/compile_resources.ps1"
"command": "scripts/compile_resources.ps1"
},
{
"label": "Build AutoSplit",
"type": "shell",
"command": ".venv/Scripts/Activate.ps1; scripts/build.ps1",
"command": "scripts/build.ps1",
"group": {
"kind": "build",
"isDefault": true
Expand Down

0 comments on commit 5ca2273

Please sign in to comment.