Skip to content

Commit 588972c

Browse files
committed
fix: group extras being skipped
1 parent 0482e61 commit 588972c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sign.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,11 +482,11 @@ def fastlane_register_app(
482482
env=my_env,
483483
)
484484

485-
app_extras = [("cloud_container", "iCloud."), ("group", "group.")]
485+
app_extras = [("cloud_container", "iCloud.", icloud_entitlements), ("group", "group.", group_entitlements)]
486486
with ThreadPool(len(app_extras)) as p:
487487
p.starmap(
488-
lambda extra_type, extra_prefix: fastlane_register_app_extras(
489-
my_env, bundle_id, extra_type, extra_prefix, icloud_entitlements, entitlements
488+
lambda extra_type, extra_prefix, matchable_entitlements: fastlane_register_app_extras(
489+
my_env, bundle_id, extra_type, extra_prefix, matchable_entitlements, entitlements
490490
),
491491
app_extras,
492492
)

0 commit comments

Comments
 (0)