From 526d8a8a7630a963bf5ff64b553f233264d63d65 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 21 May 2023 11:07:22 +1000 Subject: [PATCH] Fix cheatsheet generate VSCode task This was previously not working because we tried to run the whole string as its own process --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f020e1d0c..8027a5344 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,8 +5,8 @@ "tasks": [ { "label": "Generate cheatsheet", - "type": "process", - "command": "go run scripts/cheatsheet/main.go ", + "type": "shell", + "command": "go run scripts/cheatsheet/main.go generate", "problemMatcher": [], }, {