Merge branch 'master' into develop

This commit is contained in:
Janek Bevendorff 2020-04-09 18:27:40 +02:00
commit d189f9132e
No known key found for this signature in database
GPG key ID: 2FDEB0D40BCA5E11
21 changed files with 943 additions and 933 deletions

View file

@ -1210,9 +1210,14 @@ appsign() {
exitError "Unpacking failed!"
fi
logInfo "Signing app..."
xcrun codesign --sign "${key}" --verbose --deep --entitlements \
"${real_src_dir}/share/macosx/keepassxc.entitlements" ./app/KeePassXC.app
logInfo "Signing app bundle..."
xcrun codesign --sign "${key}" --verbose --deep --options runtime ./app/KeePassXC.app
# Sign main binary and libraries independently so we can keep using the convenient --deep
# option while avoiding adding entitlements recursively
logInfo "Signing main binary..."
xcrun codesign --sign "${key}" --verbose --force --options runtime --entitlements \
"${real_src_dir}/share/macosx/keepassxc.entitlements" ./app/KeePassXC.app/Contents/MacOS/KeePassXC
if [ 0 -ne $? ]; then
cd "${orig_dir}"