1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-16 10:12:21 +01:00

Allow multiple files in CLI syntax

This commit is contained in:
Otto Winter
2019-07-01 11:09:06 +02:00
parent 59091100e4
commit 894ec07cc8
3 changed files with 24 additions and 17 deletions

View File

@@ -59,7 +59,7 @@ def read_config(args):
CORE.ace = args.ace
f = data['file']
if CORE.ace:
CORE.config_path = os.path.join(args.configuration, f)
CORE.config_path = os.path.join(args.configuration[0], f)
else:
CORE.config_path = data['file']
vs = VSCodeResult()