Created
August 7, 2014 14:30
-
-
Save mwohlgemuth/10b1d4af89c549342424 to your computer and use it in GitHub Desktop.
xcode-5.1.1 postinstall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>postinstall_script</key> | |
<string>#!/bin/sh | |
# Enable developer mode policies | |
/usr/sbin/DevToolsSecurity -enable | |
# Add a group to developer group | |
/usr/sbin/dseditgroup -o edit -a netaccounts -t group _developer | |
# Accept the Xcode EULA | |
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -license accept | |
exit 0</string> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment