Update code_sign.sh.in

Update script to sign dylib in all app subfolders
This commit is contained in:
Charles J. Cliffe 2023-10-16 23:36:37 -04:00 committed by GitHub
parent 2c6716907e
commit 77627b6013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
for f in ${APPS}/Contents/MacOS/*.dylib
for f in ${APPS}/Contents/**/*.dylib
do
/usr/bin/codesign --force --verify --verbose --sign "${CUBICSDR_CERT}" $f
done