Fix *.so files not being signed resulting in notarization errors

This commit is contained in:
Janek Bevendorff 2021-01-31 23:31:59 +01:00
parent 61b85183f9
commit 1385929089

View File

@ -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!"