Skip to content

Instantly share code, notes, and snippets.

@alessandrostone
Forked from bradley219/fix_xcode_plugins
Last active August 29, 2015 14:25
Show Gist options
  • Save alessandrostone/030d7285d3ee4bfffe11 to your computer and use it in GitHub Desktop.
Save alessandrostone/030d7285d3ee4bfffe11 to your computer and use it in GitHub Desktop.
Fix Xcode Plugin UUIDs
#!/bin/bash
UUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`
echo "UUID=$UUID"
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add "$UUID"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment