From fa5cf3e5ea64e96c75235fb18627d7d2f5ba917a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 2 Dec 2025 09:47:52 -0800 Subject: [PATCH] buildHomeAssistantComponent: fix typo in check_manifest.py --- .../home-assistant/build-custom-component/check_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/home-assistant/build-custom-component/check_manifest.py b/pkgs/servers/home-assistant/build-custom-component/check_manifest.py index c2a41584effc..7091f49800af 100644 --- a/pkgs/servers/home-assistant/build-custom-component/check_manifest.py +++ b/pkgs/servers/home-assistant/build-custom-component/check_manifest.py @@ -68,7 +68,7 @@ def main(args): # At least one manifest should match the component name ok &= any(check_derivation_name(manifest) for manifest in manifests) - # All requirements need to match, use `ignoreRequirementVersion` to ignore too strict version constraints + # All requirements need to match, use `ignoreVersionRequirement` to ignore too strict version constraints ok &= all( check_requirements(manifest, args.ignore_version_requirement) for manifest in manifests