Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Force code signing even if the resource is already signed.
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
Scripts/build.sh
|
@@ -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() |
|
|