From 138592908946e8713df5f1f8c3dad3f133ec2692 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Sun, 31 Jan 2021 23:31:59 +0100 Subject: [PATCH] Fix *.so files not being signed resulting in notarization errors --- release-tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-tool b/release-tool index 7116c4c32..178b765dc 100755 --- a/release-tool +++ b/release-tool @@ -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!"