Comparing version 0.8.6 to 0.8.8
@@ -66,3 +66,3 @@ { | ||
"name": "applesign", | ||
"version": "0.8.6" | ||
"version": "0.8.8" | ||
} |
@@ -224,2 +224,3 @@ 'use strict'; | ||
if (typeof entMacho['keychain-access-groups'] === 'object') { | ||
changed = true; | ||
entMacho['keychain-access-groups'][0] = entMobProv['application-identifier']; | ||
@@ -234,4 +235,13 @@ } | ||
].forEach((id) => { | ||
delete entMacho[id]; | ||
if (typeof entMacho[id] !== undefined) { | ||
delete entMacho[id]; | ||
changed = true; | ||
} | ||
}); | ||
if (true) { | ||
if (entMacho['get-task-allow'] !== true) { | ||
entMacho['get-task-allow'] = true; | ||
changed = true; | ||
} | ||
} | ||
if (changed || this.config.entry) { | ||
@@ -238,0 +248,0 @@ const newEntitlementsFile = file + '.entitlements'; |
38845
1090