1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

Fix when idf component has broken symlinks (#5058)

This commit is contained in:
Jesse Hills
2023-07-05 10:31:58 +12:00
committed by GitHub
parent fc3d558d47
commit 22a1134f0e

View File

@@ -547,6 +547,8 @@ def copy_files():
CORE.relative_build_path(f"components/{name}"),
dirs_exist_ok=True,
ignore=shutil.ignore_patterns(".git", ".github"),
symlinks=True,
ignore_dangling_symlinks=True,
)
dir = os.path.dirname(__file__)