From bf6cb10532995825588c02de22282175ab1237ac Mon Sep 17 00:00:00 2001 From: Zhuo Lu Date: Sat, 12 Nov 2016 10:44:05 -0800 Subject: [PATCH] Do not insert com.apple.developer.team-identifier --- util-entitlements.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/util-entitlements.js b/util-entitlements.js index 08ff73e..4c332a8 100644 --- a/util-entitlements.js +++ b/util-entitlements.js @@ -72,13 +72,6 @@ module.exports.preAutoEntitlements = function (opts) { debuglog('`com.apple.application-identifier` not found in entitlements file, new inserted: ' + appIdentifier) entitlements['com.apple.application-identifier'] = appIdentifier } - // Insert developer team identifier if not exists - if (entitlements['com.apple.developer.team-identifier']) { - debuglog('`com.apple.developer.team-identifier` found in entitlements file: ' + entitlements['com.apple.developer.team-identifier']) - } else { - debuglog('`com.apple.developer.team-identifier` not found in entitlements file, new inserted: ' + appInfo.ElectronTeamID) - entitlements['com.apple.developer.team-identifier'] = appInfo.ElectronTeamID - } // Init entitlements app group key to array if not exists if (!entitlements['com.apple.security.application-groups']) { entitlements['com.apple.security.application-groups'] = []