Skip to content

Commit

Permalink
Fix cheatsheet generate VSCode task
Browse files Browse the repository at this point in the history
This was previously not working because we tried to run the whole string as its own process
  • Loading branch information
jesseduffield committed May 21, 2023
1 parent e1fc906 commit 526d8a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
},
{
Expand Down

0 comments on commit 526d8a8

Please sign in to comment.