Fix cheatsheet generate VSCode task

This was previously not working because we tried to run the whole string as its own process
This commit is contained in:
Jesse Duffield 2023-05-21 11:07:22 +10:00
parent e1fc90615d
commit 526d8a8a76

4
.vscode/tasks.json vendored
View file

@ -5,8 +5,8 @@
"tasks": [ "tasks": [
{ {
"label": "Generate cheatsheet", "label": "Generate cheatsheet",
"type": "process", "type": "shell",
"command": "go run scripts/cheatsheet/main.go ", "command": "go run scripts/cheatsheet/main.go generate",
"problemMatcher": [], "problemMatcher": [],
}, },
{ {