mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-02 09:34:58 -05:00
Fix *.so files not being signed resulting in notarization errors
This commit is contained in:
parent
61b85183f9
commit
1385929089
@ -1227,7 +1227,7 @@ appsign() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
logInfo "Signing libraries and frameworks..."
|
logInfo "Signing libraries and frameworks..."
|
||||||
if ! find "$app_dir_tmp" \( -name '*.dylib' -o -name '*.framework' \) -print0 | xargs -0 \
|
if ! find "$app_dir_tmp" \( -name '*.dylib' -o -name '*.so' -o -name '*.framework' \) -print0 | xargs -0 \
|
||||||
xcrun codesign --sign "${key}" --verbose --force --options runtime; then
|
xcrun codesign --sign "${key}" --verbose --force --options runtime; then
|
||||||
cd "${orig_dir}"
|
cd "${orig_dir}"
|
||||||
exitError "Signing failed!"
|
exitError "Signing failed!"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user