Forked from sodabiscuit/xcode_plugin_auto_compatible.sh
Last active
August 29, 2015 14:18
-
-
Save JohnWong/5e10c5d238284d7f0441 to your computer and use it in GitHub Desktop.
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