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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

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__)