mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix *.so files not being signed resulting in notarization errors
This commit is contained in:
parent
61b85183f9
commit
1385929089
1 changed files with 1 additions and 1 deletions
|
@ -1227,7 +1227,7 @@ appsign() {
|
|||
fi
|
||||
|
||||
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
|
||||
cd "${orig_dir}"
|
||||
exitError "Signing failed!"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue