Minor build fixes for VSCode, extra ignore.

This commit is contained in:
Pete Johanson 2020-06-14 23:55:51 -04:00
parent 789af69e52
commit 500232bb83
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ bootloader/
modules/
tools/
zephyr/
build/

6
.vscode/tasks.json vendored
View File

@ -6,7 +6,7 @@
{
"label": "Build",
"type": "shell",
"command": "west build",
"command": "cd app && west build",
"group": {
"kind": "build",
"isDefault": true
@ -15,13 +15,13 @@
{
"label": "Flash",
"type": "shell",
"command": "west flash",
"command": "cd app && west flash",
"group": "test"
},
{
"label": "Debug",
"type": "shell",
"command": "west debug",
"command": "cd app && west debug",
"group": "test"
}
]