From fb1d481a1d9420bffc830696de66b2874e64a67a Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Sun, 18 Nov 2012 15:38:41 +0000 Subject: * Please note this revision will re-prompt for access to all KeyChain passwords * - Change the bundle identifier from com.google.code.sequel-pro to com.sequelpro.SequelPro - Change the code signing process to use a new identity and requirement, to add Developer ID support on 10.7+ but to also maintain functionality on 10.5+ - Add a preference migration routine to copy the old application defaults to the new bundle identifier's defaults - Re-order the default keys to alphabetical to more easily locate values --- Scripts/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Scripts/build.sh') diff --git a/Scripts/build.sh b/Scripts/build.sh index bc5a9d14..01c9b683 100755 --- a/Scripts/build.sh +++ b/Scripts/build.sh @@ -86,8 +86,8 @@ if [ "$CONFIGURATION" == 'Distribution' ] then echo 'Performing distribution build code signing...' - codesign -s 'Sequel Pro Distribution' "${BUILD_PRODUCT}/Contents/Resources/SequelProTunnelAssistant" 2> /dev/null - codesign -s 'Sequel Pro Distribution' "${BUILD_PRODUCT}" 2> /dev/null + codesign -s 'Developer ID Application: MJ Media' -r "${SRCROOT}/Resources/sprequirement.bin" "${BUILD_PRODUCT}/Contents/Resources/SequelProTunnelAssistant" + codesign -s 'Developer ID Application: MJ Media' -r "${SRCROOT}/Resources/sprequirement.bin" "${BUILD_PRODUCT}" # Verify that code signing has worked - all distribution builds must be signed with the same key. VERIFYERRORS=`codesign --verify "$BUILD_PRODUCT" 2>&1` -- cgit v1.2.3