Skip to content

Commit

Permalink
Force code signing even if the resource is already signed.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuconnolly committed Jun 1, 2014
1 parent ed4befb commit 5cf6631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scripts/build.sh
Expand Up @@ -45,12 +45,12 @@ FRAMEWORKS_PATH="${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"

dev_sign_resource()
{
codesign -s 'Sequel Pro Development' "$1" 2> /dev/null
codesign -f -s 'Sequel Pro Development' "$1" 2> /dev/null
}

dist_sign_resource()
{
codesign -s 'Developer ID Application: MJ Media' -r "${SRCROOT}/Resources/sprequirement.bin" "$1" 2> /dev/null
codesign -f -s 'Developer ID Application: MJ Media' -r "${SRCROOT}/Resources/sprequirement.bin" "$1" 2> /dev/null
}

verify_signing()
Expand Down

0 comments on commit 5cf6631

Please sign in to comment.