Skip to content

Commit d642191

Browse files
committed
Add hardened runtime entitlements to allow AppleScript + scripting lang
Use get-task-allow which seems to be necessary to get scripting languages like Python to work. It's discouraged in docs, but from trials seems like App Notarization will give a warning but still approve the app.
1 parent 047b3e2 commit d642191

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/MacVim/MacVim.entitlements

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.automation.apple-events</key>
6+
<true/>
7+
<key>com.apple.security.cs.disable-library-validation</key>
8+
<true/>
9+
<key>com.apple.security.get-task-allow</key>
10+
<true/>
11+
</dict>
12+
</plist>

0 commit comments

Comments
 (0)