diff options
| author | Zack Whipkey <zerkz@users.noreply.github.com> | 2024-10-04 12:33:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-04 13:33:27 -0400 |
| commit | 05cb4433d82c9f8b8071add7ab1d6dc7862d2f76 (patch) | |
| tree | 646a2a8fb4e099e9600f5bddb94607aaa8b69c24 | |
| parent | 49201b05d7b62b2460d0f53712b2ca81abb8d0f0 (diff) | |
| download | decky-bazzite-buddy-05cb4433d82c9f8b8071add7ab1d6dc7862d2f76.tar.gz decky-bazzite-buddy-05cb4433d82c9f8b8071add7ab1d6dc7862d2f76.zip | |
small refactor to avoid vscode spitting out errors for tasks.json (#30)
| -rw-r--r-- | .vscode/tasks.json | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d638c86..c441ff9 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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", |
