Update tasks

This commit is contained in:
ludeeus 2020-04-26 12:32:28 +02:00
parent 0cd664e2a6
commit 15c2139381

8
.vscode/tasks.json vendored
View File

@ -4,25 +4,25 @@
{ {
"label": "Run Home Assistant on port 9123", "label": "Run Home Assistant on port 9123",
"type": "shell", "type": "shell",
"command": "dc start", "command": "container start",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "Run Home Assistant configuration against /config", "label": "Run Home Assistant configuration against /config",
"type": "shell", "type": "shell",
"command": "dc check", "command": "container check",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "Upgrade Home Assistant to latest dev", "label": "Upgrade Home Assistant to latest dev",
"type": "shell", "type": "shell",
"command": "dc install", "command": "container install",
"problemMatcher": [] "problemMatcher": []
}, },
{ {
"label": "Install a spesific version of Home Assistant", "label": "Install a spesific version of Home Assistant",
"type": "shell", "type": "shell",
"command": "dc set-version", "command": "container set-version",
"problemMatcher": [] "problemMatcher": []
} }
] ]