File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ libcrypto="${openssl_prefix}/lib/libcrypto.3.dylib"
4646frameworks_dir=" ${app_path} /Contents/Frameworks"
4747bin_path=" ${app_path} /Contents/MacOS/codex-monitor"
4848daemon_path=" ${app_path} /Contents/MacOS/codex_monitor_daemon"
49+ daemonctl_path=" ${app_path} /Contents/MacOS/codex_monitor_daemonctl"
4950
5051if [[ ! -f " ${libssl} " || ! -f " ${libcrypto} " ]]; then
5152 echo " OpenSSL dylibs not found at ${openssl_prefix} /lib"
@@ -94,6 +95,9 @@ codesign --force --options runtime --timestamp --sign "${identity}" "${codesign_
9495if [[ -f " ${daemon_path} " ]]; then
9596 codesign --force --options runtime --timestamp --sign " ${identity} " " ${codesign_entitlements[@]} " " ${daemon_path} "
9697fi
98+ if [[ -f " ${daemonctl_path} " ]]; then
99+ codesign --force --options runtime --timestamp --sign " ${identity} " " ${codesign_entitlements[@]} " " ${daemonctl_path} "
100+ fi
97101codesign --force --options runtime --timestamp --sign " ${identity} " " ${codesign_entitlements[@]} " " ${app_path} "
98102
99103echo " Bundled OpenSSL dylibs and re-signed ${app_path} "
You can’t perform that action at this time.
0 commit comments