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

Move default build path to .esphome directory (#2586)

This commit is contained in:
Otto Winter
2021-10-23 12:38:57 +02:00
committed by GitHub
parent d85b7a6bd0
commit 1a6a063e04
3 changed files with 6 additions and 75 deletions

View File

@@ -125,7 +125,7 @@ def _run_idedata(config):
def _load_idedata(config):
platformio_ini = Path(CORE.relative_build_path("platformio.ini"))
temp_idedata = Path(CORE.relative_internal_path(CORE.name, "idedata.json"))
temp_idedata = Path(CORE.relative_internal_path("idedata", f"{CORE.name}.json"))
changed = False
if not platformio_ini.is_file() or not temp_idedata.is_file():