Skip to content

Instantly share code, notes, and snippets.

@bradley219
Last active December 11, 2019 06:08
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bradley219/6614b00a6e35a278176a to your computer and use it in GitHub Desktop.
Save bradley219/6614b00a6e35a278176a 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