From f5d09eb07d867f1d0a33a8ee54aeb0ee90fbbb54 Mon Sep 17 00:00:00 2001 From: John Cote Date: Sun, 1 Aug 2021 20:36:46 -0400 Subject: [PATCH] linux: Fix VS Code tasks --- linux/.vscode/tasks.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 linux/.vscode/tasks.json diff --git a/linux/.vscode/tasks.json b/linux/.vscode/tasks.json old mode 100644 new mode 100755 index 8a97f37..3169d73 --- a/linux/.vscode/tasks.json +++ b/linux/.vscode/tasks.json @@ -6,7 +6,7 @@ { "label": "Linux - Start Game", "type": "shell", - "command": "./start_game.sh", + "command": "./start-game.sh", "group": "test", "presentation": { "reveal": "always", @@ -16,7 +16,7 @@ { "label": "Linux - Start AI Server", "type": "shell", - "command": "./start_ai_server.sh", + "command": "./start-ai-server.sh", "group": "test", "presentation": { "reveal": "always", @@ -26,7 +26,7 @@ { "label": "Linux - Start Astron Server", "type": "shell", - "command": "./start_astron_server.sh", + "command": "./start-astron-server.sh", "group": "test", "presentation": { "reveal": "always", @@ -36,7 +36,7 @@ { "label": "Linux - Start UberDOG Server", "type": "shell", - "command": "./start_uberdog_server.sh", + "command": "./start-uberdog-server.sh", "group": "test", "presentation": { "reveal": "always", @@ -44,4 +44,4 @@ } }, ] - } \ No newline at end of file +}