Add tasks.json to make testing easier (#330)

This commit is contained in:
Matheson Steplock 2023-10-08 16:22:10 -04:00 committed by GitHub
parent 2e5c669723
commit 5256c521f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Debian Package",
"type": "shell",
"command": "chmod 555 homeassistant-supervised/DEBIAN/p* && dpkg-deb --build --root-owner-group homeassistant-supervised",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
}
}
]
}