small refactor to avoid vscode spitting out errors for tasks.json (#30)
This commit is contained in:
parent
49201b05d7
commit
05cb4433d8
1 changed files with 4 additions and 10 deletions
14
.vscode/tasks.json
vendored
14
.vscode/tasks.json
vendored
|
@ -8,9 +8,7 @@
|
|||
"type": "shell",
|
||||
"group": "none",
|
||||
"detail": "Install depedencies for basic setup",
|
||||
"linux": {
|
||||
"command": "${workspaceFolder}/.vscode/setup.sh",
|
||||
},
|
||||
"command": "${workspaceFolder}/.vscode/setup.sh",
|
||||
// // placeholder for windows scripts, not currently planned
|
||||
// "windows": {
|
||||
// "command": "call -c ${workspaceFolder}\\.vscode\\setup.bat",
|
||||
|
@ -44,9 +42,7 @@
|
|||
"type": "shell",
|
||||
"group": "none",
|
||||
"detail": "Check that settings.json has been created",
|
||||
"linux": {
|
||||
"command": "${workspaceFolder}/.vscode/config.sh",
|
||||
},
|
||||
"command": "${workspaceFolder}/.vscode/config.sh",
|
||||
// // placeholder for windows scripts, not currently planned
|
||||
// "windows": {
|
||||
// "command": "call ${workspaceFolder}\\.vscode\\config.bat",
|
||||
|
@ -58,15 +54,13 @@
|
|||
"label": "cli-build",
|
||||
"group": "build",
|
||||
"detail": "Build plugin with CLI",
|
||||
"linux": {
|
||||
"command": "${workspaceFolder}/.vscode/build.sh",
|
||||
},
|
||||
"command": "${workspaceFolder}/.vscode/build.sh",
|
||||
// // placeholder for windows logic, not currently planned
|
||||
// "windows": {
|
||||
// "command": "call ${workspaceFolder}\\.vscode\\build.bat",
|
||||
// },
|
||||
"problemMatcher": []
|
||||
},
|
||||
},
|
||||
//"All-in-one" build task
|
||||
{
|
||||
"label": "build",
|
||||
|
|
Loading…
Reference in a new issue