Skip to content

Commit 0504558

Browse files
committed
add clean command
1 parent 7bea58b commit 0504558

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
// for the documentation about the tasks.json format
44
"version": "2.0.0",
55
"tasks": [
6+
{
7+
"label": "Cleanup workspace (git clean -ffdx)",
8+
"type": "shell",
9+
"command": "git",
10+
"args": [
11+
"clean",
12+
"-ffdx"
13+
],
14+
"options": {
15+
"cwd": "${workspaceFolder}"
16+
},
17+
"group": "build",
18+
"problemMatcher": "$gcc"
19+
},
620
{
721
"label": "[Debug] Build Android Demo",
822
"type": "shell",

0 commit comments

Comments
 (0)