summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-05-21 11:07:22 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-05-21 11:31:29 +1000
commit526d8a8a7630a963bf5ff64b553f233264d63d65 (patch)
tree318e6aad6e598832cdab3c1e202b8767c73e9d94 /.vscode
parente1fc90615d75913c21eb0050e53d4452f9a3b0d0 (diff)
Fix cheatsheet generate VSCode task
This was previously not working because we tried to run the whole string as its own process
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json4
1 files 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": [],
},
{