Last active
May 4, 2016 05:21
-
-
Save sodabiscuit/41196f0ceb80bb9fdcd5 to your computer and use it in GitHub Desktop.
Xcode Plugin AutoCompatible
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
#!/bin/bash | |
XCODE_UUID=$(defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID) | |
PLUGIN_PATH="$HOME/Library/Application Support/Developer/Shared/Xcode/Plug-ins" | |
for plugin in "$PLUGIN_PATH"/*.xcplugin ; do | |
defaults write "${plugin}"/Contents/Info DVTPlugInCompatibilityUUIDs -array-add $XCODE_UUID | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment