diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b427041..94f00cb 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" ], @@ -52,9 +53,11 @@ }, { "label": "cargo clean", - "type": "cargo", - "subcommand": "clean", + "type": "process", + "command": "cargo", + "args": ["clean"], + "problemMatcher": [], "group": "build" }, ] -} \ No newline at end of file +}