And once more improved tasks

This commit is contained in:
Profitroll 2023-01-27 15:55:09 +01:00
parent cf0c8f8e4c
commit 437a37f569
1 changed files with 9 additions and 3 deletions

12
.vscode/tasks.json vendored
View File

@ -10,7 +10,7 @@
"command": "./.vscode/tasks/windows/cleanup.bat"
},
"linux": {
"command": "./.vscode/tasks/linux/cleanup.sh"
"command": "bash ./.vscode/tasks/linux/cleanup.sh"
},
"problemMatcher": []
},
@ -21,7 +21,7 @@
"command": "./.vscode/tasks/windows/build.bat"
},
"linux": {
"command": "./.vscode/tasks/linux/build.sh"
"command": "bash ./.vscode/tasks/linux/build.sh"
},
"problemMatcher": [],
"group": {
@ -36,7 +36,7 @@
"command": "./.vscode/tasks/windows/test.bat"
},
"linux": {
"command": "./.vscode/tasks/linux/test.sh"
"command": "bash ./.vscode/tasks/linux/test.sh"
},
"problemMatcher": []
},
@ -54,6 +54,9 @@
"windows": {
"command": "./.vscode/tasks/windows/install_requirements.bat"
},
"linux": {
"command": "bash ./.vscode/tasks/linux/install_requirements.sh"
},
"problemMatcher": []
},
{
@ -62,6 +65,9 @@
"windows": {
"command": "./.vscode/tasks/windows/run.bat"
},
"linux": {
"command": "bash ./.vscode/tasks/linux/run.sh"
},
"problemMatcher": []
}
]