From 15c2139381121219b75568961c3961710e5bbceb Mon Sep 17 00:00:00 2001 From: ludeeus Date: Sun, 26 Apr 2020 12:32:28 +0200 Subject: [PATCH] Update tasks --- .vscode/tasks.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ad1c9bf..1922501 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,25 +4,25 @@ { "label": "Run Home Assistant on port 9123", "type": "shell", - "command": "dc start", + "command": "container start", "problemMatcher": [] }, { "label": "Run Home Assistant configuration against /config", "type": "shell", - "command": "dc check", + "command": "container check", "problemMatcher": [] }, { "label": "Upgrade Home Assistant to latest dev", "type": "shell", - "command": "dc install", + "command": "container install", "problemMatcher": [] }, { "label": "Install a spesific version of Home Assistant", "type": "shell", - "command": "dc set-version", + "command": "container set-version", "problemMatcher": [] } ]