And once more improved tasks

This commit is contained in:
Profitroll 2023-01-27 15:55:09 +01:00
parent cf0c8f8e4c
commit 437a37f569

12
.vscode/tasks.json vendored
View File

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