From 108c8cd26a586f8b51fd09ce95b108db229be4de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Tue, 25 Apr 2023 16:33:46 +0200 Subject: [PATCH] Remove hardened requirement on the development code signing When we do real releases, we override this signing anyway. --- SDL/macbundle.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDL/macbundle.sh b/SDL/macbundle.sh index bd68a11112..1a62948414 100755 --- a/SDL/macbundle.sh +++ b/SDL/macbundle.sh @@ -53,5 +53,5 @@ fi # AdHoc codesign is required for Apple Silicon. echo "Signing..." -codesign -fs - --options runtime --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPPSDL}" || exit 1 -codesign -fs - --options runtime --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPP}" || exit 1 +codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPPSDL}" || echo "Failed signing" +codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPP}" || echo "Failed signing"