Skip to content

Commit

Permalink
Fix *.so files not being signed resulting in notarization errors
Browse files Browse the repository at this point in the history
  • Loading branch information
phoerious committed Feb 1, 2021
1 parent 61b8518 commit 1385929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-tool
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit 1385929

Please sign in to comment.