1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-20 08:46:01 +00:00
This commit is contained in:
J. Nick Koston
2025-11-01 02:39:35 -05:00
parent d1be68d808
commit c6e3261a6a
3 changed files with 221 additions and 4 deletions

View File

@@ -773,7 +773,7 @@ def _get_components_graph_cache_key() -> str:
# This is fast and works consistently across CI and local dev
cmd = ["git", "ls-files", "-s", "esphome/components/**/__init__.py"]
result = subprocess.run(
cmd, capture_output=True, text=True, check=True, cwd=root_path
cmd, capture_output=True, text=True, check=True, cwd=root_path, close_fds=False
)
# Hash the git output (includes file paths and their sha1 hashes)