Skip to content

Instantly share code, notes, and snippets.

@sodabiscuit
Last active May 4, 2016 05:21
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save sodabiscuit/41196f0ceb80bb9fdcd5 to your computer and use it in GitHub Desktop.
Save sodabiscuit/41196f0ceb80bb9fdcd5 to your computer and use it in GitHub Desktop.
Xcode Plugin AutoCompatible
#!/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