mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2024-11-26 11:49:15 +00:00
12 lines
297 B
Bash
Executable File
12 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f /Applications/Xcode.app/Contents/Info.plist ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
UUID=`defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID`
|
|
|
|
defaults write "$2/Plug-ins/OrcaM.ideplugin/Contents/Info.plist" DVTPlugInCompatibilityUUIDs -array-add "${UUID}"
|
|
|