aboutsummaryrefslogtreecommitdiffstats
path: root/build-helpers
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-12-23 20:56:54 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-12-23 20:56:54 +0100
commit14806b2d0010a1a26e57fc9066d44efd79d82871 (patch)
tree36b1265d7d793e4bf9a4f817edf6a70b828d3301 /build-helpers
parentAttempt at updating entitlements list for signed macOS app (diff)
downloadferdium-app-14806b2d0010a1a26e57fc9066d44efd79d82871.tar.gz
ferdium-app-14806b2d0010a1a26e57fc9066d44efd79d82871.tar.zst
ferdium-app-14806b2d0010a1a26e57fc9066d44efd79d82871.zip
Put same entitlements in inherit file
Otherwise the app wasn't starting and crashing with a SIGTRAP. I can't find the GitHub comment recommending to that as a fix to the ecountered issue but will add the link the the commit comments if I run into it again.
Diffstat (limited to 'build-helpers')
-rw-r--r--build-helpers/entitlements.mas.inherit.plist14
1 files changed, 13 insertions, 1 deletions
diff --git a/build-helpers/entitlements.mas.inherit.plist b/build-helpers/entitlements.mas.inherit.plist
index e33c2158e..ef14228f0 100644
--- a/build-helpers/entitlements.mas.inherit.plist
+++ b/build-helpers/entitlements.mas.inherit.plist
@@ -2,7 +2,19 @@
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0"> 3<plist version="1.0">
4 <dict> 4 <dict>
5 <key>com.apple.security.inherit</key> 5 <key>com.apple.security.cs.allow-jit</key>
6 <true/>
7 <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8 <true/>
9 <key>com.apple.security.cs.disable-library-validation</key>
10 <true/>
11 <key>com.apple.security.device.camera</key>
12 <true/>
13 <key>com.apple.security.device.microphone</key>
14 <true/>
15 <key>com.apple.security.device.audio-input</key>
16 <true/>
17 <key>com.apple.security.network.client</key>
6 <true/> 18 <true/>
7 </dict> 19 </dict>
8</plist> \ No newline at end of file 20</plist> \ No newline at end of file