vscode: support whitespace in python binary path

This commit is contained in:
ed 2021-07-17 04:11:14 +02:00
parent bf5ee9d643
commit ff82738aaf

5
.vscode/tasks.json vendored
View file

@ -9,7 +9,10 @@
{ {
"label": "no_dbg", "label": "no_dbg",
"type": "shell", "type": "shell",
"command": "${config:python.pythonPath} .vscode/launch.py" "command": "${config:python.pythonPath}",
"args": [
".vscode/launch.py"
]
} }
] ]
} }