We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95688f4 commit b51113cCopy full SHA for b51113c
1 file changed
.vscode/tasks.json
@@ -3,15 +3,18 @@
3
"tasks": [
4
{
5
"label": "BuildWheel",
6
- "type": "process",
7
- "command": "${command:python.interpreterPath}",
+ "type": "shell",
+ "command": "python",
8
"args": [
9
"setup.py",
10
"sdist",
11
"bdist_wheel"
12
],
13
"options": {
14
- "cwd": "${workspaceRoot}/azure-devops/"
+ "cwd": "${workspaceRoot}/azure-devops/",
15
+ "env": {
16
+ "PATH": "${workspaceRoot}\\env\\Scripts;${env:PATH}"
17
+ }
18
},
19
"presentation": {
20
"echo": true,
0 commit comments