Corrected default VSCode clean task.

This commit is contained in:
David Boles
2020-03-04 19:02:05 -05:00
parent 6c26219611
commit 9977613eac

6
.vscode/tasks.json vendored
View File

@@ -53,8 +53,10 @@
}, },
{ {
"label": "cargo clean", "label": "cargo clean",
"type": "cargo", "type": "process",
"subcommand": "clean", "command": "cargo",
"args": ["clean"],
"problemMatcher": [],
"group": "build" "group": "build"
}, },
] ]