From fa5dfe19f8567f2fb7ff7723930aed7bef5b8311 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:26:07 +0100 Subject: [PATCH] Fix default tasks.json definition --- assets/settings/initial_tasks.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/assets/settings/initial_tasks.json b/assets/settings/initial_tasks.json index 0f4d8f98b3..0115bcd76f 100644 --- a/assets/settings/initial_tasks.json +++ b/assets/settings/initial_tasks.json @@ -4,9 +4,7 @@ [ { "label": "Example task", - "command": "bash", - // rest of the parameters are optional - "args": ["-c", "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done"], + "command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done", // Env overrides for the command, will be appended to the terminal's environment from the settings. "env": { "foo": "bar" }, // Current working directory to spawn the command into, defaults to current project root.