Skip to content

Commit d857716

Browse files
committed
Only sign known frameworks
1 parent 0983b32 commit d857716

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

build_scripts/apple_utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,9 @@ def Codesign(install_path, identifier=None, force=False, verbose_output=False) -
308308
dirs[:] = [d for d in dirs if not d.endswith(".framework")]
309309

310310
for framework in frameworks:
311+
framework_name = os.path.splitext(framework)[0]
312+
if framework_name.lower() not in ["openusd", "opensubdiv", "materialx"]:
313+
continue
311314
path = os.path.join(root, framework)
312315
result = CodesignPath(path, identifier, team_identifier=team_identifier, force=force, is_framework=True)
313316
if verbose_output:

0 commit comments

Comments
 (0)