mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2024-12-01 14:50:19 +00:00
17 lines
483 B
Bash
Executable File
17 lines
483 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
cp -r /tmp/com.halcyontouch.Apple2gsTemplate.pkg/* "$HOME/Library/Developer/Xcode/"
|
|
chown -R "$USER" "$HOME/Library/Developer/Xcode/"
|
|
rm -rf /tmp/com.halcyontouch.Apple2gsTemplate.pkg
|
|
|
|
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}"
|
|
|