Skip to content

Commit 409333c

Browse files
committed
Another macOS codesigning fix
1 parent 75c1784 commit 409333c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/package-macOS.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ build_flavor()
4949
rm -f $TMPDIR/*/plugdata-resources.bin
5050

5151
if [ -n "$AC_USERNAME" ]; then
52-
find $TMPDIR -type f \( -name "*.so" -o -name "*.dylib" \) -exec \
52+
find $TMPDIR -type f \( -name "*.so" -o -name "*.dylib" -o -name "*.aaxplugin" \) -exec \
5353
/usr/bin/codesign --verbose --force -s "Developer ID Application: Timothy Schoen (7SV7JPRR2L)" \
5454
--options runtime \
5555
--entitlements ./Resources/Installer/Entitlements.plist {} \;
5656

57-
find $TMPDIR -type d \( -name "*.app" -o -name "*.vst3" -o -name "*.component" -o -name "*.clap" -o -name "*.aaxplugin" \) -exec \
57+
find $TMPDIR -type d \( -name "*.app" -o -name "*.vst3" -o -name "*.component" -o -name "*.clap" \) -exec \
5858
/usr/bin/codesign --verbose --force -s "Developer ID Application: Timothy Schoen (7SV7JPRR2L)" \
5959
--options runtime \
6060
--entitlements ./Resources/Installer/Entitlements.plist {} \;

0 commit comments

Comments
 (0)