From c91ade372a9560eb511fc94369cbc229819f7ef6 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sun, 16 Mar 2025 21:49:29 -0400 Subject: [PATCH] VSCode configure task: Use the env's Python interpreter --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b4747db57..b4ba38305 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -29,7 +29,7 @@ { "label": "configure", "type": "shell", - "command": "python configure.py --version ${input:gameVersion}", + "command": "${command:python.interpreterPath} configure.py --version ${input:gameVersion}", "problemMatcher": [], }, ]