From 3acdc48f99e9fee983ebf81030f2f78dd0259304 Mon Sep 17 00:00:00 2001 From: John Cote Date: Sun, 1 Aug 2021 20:50:24 -0400 Subject: [PATCH] darwin: Fix VS Code tasks --- darwin/.vscode/tasks.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/darwin/.vscode/tasks.json b/darwin/.vscode/tasks.json index 2c5e473..a926aee 100644 --- a/darwin/.vscode/tasks.json +++ b/darwin/.vscode/tasks.json @@ -6,7 +6,7 @@ { "label": "Darwin - Start Game", "type": "shell", - "command": "./start_game.sh", + "command": "./start-game.sh", "group": "test", "presentation": { "reveal": "always", @@ -16,7 +16,7 @@ { "label": "Darwin - 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": "Darwin - 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": "Darwin - 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 +}