Corrected default VSCode build task.

This commit is contained in:
David Boles
2020-03-04 13:41:39 -05:00
parent cda24a671d
commit 6c26219611

5
.vscode/tasks.json vendored
View File

@@ -10,8 +10,9 @@
* so we can invoke it from the debug launcher.
*/
"label": "cargo build",
"type": "cargo",
"subcommand": "build",
"type": "process",
"command": "cargo",
"args": ["build"],
"problemMatcher": [
"$rustc"
],