Skip to content

Commit 67e61b5

Browse files
committed
fix: deprecated codesign syntax
1 parent 3c8bd98 commit 67e61b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def fastlane_get_prov_profile(
533533

534534
def codesign_dump_entitlements(component: Path) -> Dict[Any, Any]:
535535
entitlements_str = decode_clean(
536-
run_process("codesign", "--no-strict", "-d", "--entitlements", ":-", str(component)).stdout
536+
run_process("codesign", "--no-strict", "-d", "--entitlements", "-", "--xml", str(component)).stdout
537537
)
538538
return plist_loads(entitlements_str)
539539

0 commit comments

Comments
 (0)