linux: Fix VS Code tasks

This commit is contained in:
John Cote 2021-08-01 20:36:46 -04:00
parent 9cf234454c
commit f5d09eb07d
No known key found for this signature in database
GPG key ID: E3442FF71E9C1C01

8
linux/.vscode/tasks.json vendored Normal file → Executable file
View file

@ -6,7 +6,7 @@
{ {
"label": "Linux - Start Game", "label": "Linux - Start Game",
"type": "shell", "type": "shell",
"command": "./start_game.sh", "command": "./start-game.sh",
"group": "test", "group": "test",
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -16,7 +16,7 @@
{ {
"label": "Linux - Start AI Server", "label": "Linux - Start AI Server",
"type": "shell", "type": "shell",
"command": "./start_ai_server.sh", "command": "./start-ai-server.sh",
"group": "test", "group": "test",
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -26,7 +26,7 @@
{ {
"label": "Linux - Start Astron Server", "label": "Linux - Start Astron Server",
"type": "shell", "type": "shell",
"command": "./start_astron_server.sh", "command": "./start-astron-server.sh",
"group": "test", "group": "test",
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -36,7 +36,7 @@
{ {
"label": "Linux - Start UberDOG Server", "label": "Linux - Start UberDOG Server",
"type": "shell", "type": "shell",
"command": "./start_uberdog_server.sh", "command": "./start-uberdog-server.sh",
"group": "test", "group": "test",
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",