Last active
August 29, 2015 14:21
-
-
Save kambala-decapitator/88bf07c2e150be946e65 to your computer and use it in GitHub Desktop.
simple shell script to quickly add new UUID to custom Xcode plugins
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 | |
cd "${HOME}/Library/Application Support/Developer/Shared/Xcode/Plug-ins" | |
for plugin in *.xcplugin; do | |
/usr/libexec/PlistBuddy -c "Add :DVTPlugInCompatibilityUUIDs: string $1" "${plugin}/Contents/Info.plist" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment