diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 38804f6..48a0a9e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": [] } ]