Skip to content

Commit 500232b

Browse files
committed
Minor build fixes for VSCode, extra ignore.
1 parent 789af69 commit 500232b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ bootloader/
33
modules/
44
tools/
55
zephyr/
6+
build/

.vscode/tasks.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"label": "Build",
88
"type": "shell",
9-
"command": "west build",
9+
"command": "cd app && west build",
1010
"group": {
1111
"kind": "build",
1212
"isDefault": true
@@ -15,13 +15,13 @@
1515
{
1616
"label": "Flash",
1717
"type": "shell",
18-
"command": "west flash",
18+
"command": "cd app && west flash",
1919
"group": "test"
2020
},
2121
{
2222
"label": "Debug",
2323
"type": "shell",
24-
"command": "west debug",
24+
"command": "cd app && west debug",
2525
"group": "test"
2626
}
2727
]

0 commit comments

Comments
 (0)