From 6c2621961159a52769fe0709eecf531385bc38ba Mon Sep 17 00:00:00 2001 From: David Boles Date: Wed, 4 Mar 2020 13:41:39 -0500 Subject: [PATCH] Corrected default VSCode build task. --- .vscode/tasks.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b427041..02cfb65 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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" ], @@ -57,4 +58,4 @@ "group": "build" }, ] -} \ No newline at end of file +}