summaryrefslogtreecommitdiff
path: root/scripts/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/common.py')
-rw-r--r--scripts/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/common.py b/scripts/common.py
index db97ea3561..e1746f4700 100644
--- a/scripts/common.py
+++ b/scripts/common.py
@@ -211,5 +211,7 @@ def codesign(app_path):
lambda ff: ff.endswith('.dylib'))
codesign = codesign_call()
if is_mac_platform() and codesign:
+ entitlements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'dist',
+ 'installer', 'mac', 'entitlements.plist')
# sign the whole bundle
- subprocess.check_call(codesign + ['--deep', app_path])
+ subprocess.check_call(codesign + ['--deep', app_path, '--entitlements', entitlements_path])