[core] Ignore dot-prefixed config entries when looking for target platform (#8240)

This commit is contained in:
Jesse Hills 2025-02-13 10:05:46 +13:00 committed by GitHub
parent 3b7a7a2262
commit 43319d4c8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -217,6 +217,8 @@ def preload_core_config(config, result) -> str:
target_platforms = []
for domain, _ in config.items():
if domain.startswith("."):
continue
if _is_target_platform(domain):
target_platforms += [domain]