Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit 23a74e9

Browse files
authored
Merge pull request #83 from david-boles/patch-1
Corrected default VSCode build task.
2 parents cda24a6 + 9977613 commit 23a74e9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.vscode/tasks.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
* so we can invoke it from the debug launcher.
1111
*/
1212
"label": "cargo build",
13-
"type": "cargo",
14-
"subcommand": "build",
13+
"type": "process",
14+
"command": "cargo",
15+
"args": ["build"],
1516
"problemMatcher": [
1617
"$rustc"
1718
],
@@ -52,9 +53,11 @@
5253
},
5354
{
5455
"label": "cargo clean",
55-
"type": "cargo",
56-
"subcommand": "clean",
56+
"type": "process",
57+
"command": "cargo",
58+
"args": ["clean"],
59+
"problemMatcher": [],
5760
"group": "build"
5861
},
5962
]
60-
}
63+
}

0 commit comments

Comments
 (0)