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 +}