Corrected default VSCode build task.

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

7
.vscode/tasks.json vendored
View File

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