From d5eaaabd61a8d8f7ce292fb731b81a4fc70559a1 Mon Sep 17 00:00:00 2001 From: Wojciech Potrzebowski Date: Tue, 18 Jun 2024 16:40:41 +0200 Subject: [PATCH] Update code_sign_osx.py --- build_tools/code_sign_osx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/code_sign_osx.py b/build_tools/code_sign_osx.py index 0c6882b88a..0e937d90fd 100644 --- a/build_tools/code_sign_osx.py +++ b/build_tools/code_sign_osx.py @@ -34,10 +34,10 @@ #pyside_libs = pyside_QtWebEngineCore + pyside_QtWebEngineProcess sign_command = ['codesign', '--timestamp', '--options=runtime', '--verify', '--verbose=4', '--force', - '--sign', '3rd Party Mac Developer Application: European Spallation Source Eric (W2AG9MPZ43)'] + '--sign', 'Developer ID Application: The International Scattering Alliance (8CX8K63BQM)'] sign_deep_command = ['codesign', '--timestamp', '--deep', '--options=runtime', '--verify', '--verbose=4', '--force', - '--sign', '3rd Party Mac Developer Application: European Spallation Source Eric (W2AG9MPZ43)'] + '--sign', 'Developer ID Application: The International Scattering Alliance (8CX8K63BQM)'] #Signing QtWebEngineProcess.app first as it is a helper app for sfile in itertools.chain(pyside_QtWebEngineProcessApp):