From db48f1eab99cdbd196c68e1d2e66b5eda2200154 Mon Sep 17 00:00:00 2001 From: cranci <100066266+cranci1@users.noreply.github.com> Date: Sat, 1 Nov 2025 09:06:44 +0100 Subject: [PATCH] Update code signing process in macbuild.sh Removed old code signing commands and added new ones. --- macbuild.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/macbuild.sh b/macbuild.sh index 905525e..45efacd 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -41,10 +41,7 @@ lipo -create \ "$DD_APP_PATH_ARM64/Contents/MacOS/$APPLICATION_NAME" \ -output "$TARGET_APP/Contents/MacOS/$APPLICATION_NAME" -codesign --remove "$TARGET_APP" -if [ -e "$TARGET_APP/_CodeSignature" ]; then - rm -rf "$TARGET_APP/_CodeSignature" -fi +codesign --force --deep --sign - "$TARGET_APP" echo "Universal Mac Catalyst build completed: $TARGET_APP" lipo -archs "$TARGET_APP/Contents/MacOS/$APPLICATION_NAME"