Merge pull request #391 from ViRb3/tasks-fix

Fix vscode tasks
This commit is contained in:
Philippe Teuwen 2019-09-11 00:51:14 +02:00 committed by GitHub
commit a384774ba2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
.vscode/tasks.json vendored
View file

@ -14,13 +14,13 @@
{ {
"label": "flash fullimage", "label": "flash fullimage",
"type": "shell", "type": "shell",
"command": "./flash-fullimage.sh", "command": "sudo ./pm3-flash-fullimage",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "FLASH BOOTROM", "label": "FLASH BOOTROM",
"type": "shell", "type": "shell",
"command": "./flash-bootrom.sh", "command": "sudo ./pm3-flash-bootrom",
"problemMatcher": [] "problemMatcher": []
} }
] ]