From c2092640e766e32c6a2913b6994030816938bc1a Mon Sep 17 00:00:00 2001 From: toofar Date: Sun, 30 Jul 2023 13:28:15 +1200 Subject: Remove local re-signing of macOS build. Now that we aren't patching the build we shouldn't have to try to re-sign in. --- scripts/dev/build_release.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 5c07a488a..dadb7baf5 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -245,18 +245,9 @@ def verify_windows_exe(exe_path: pathlib.Path) -> None: assert pe.verify_checksum() -def sign_mac_app() -> None: +def verify_mac_app() -> None: """Re-sign and verify the Mac .app.""" app_path = pathlib.Path('dist') / 'qutebrowser.app' - subprocess.run([ - 'codesign', - '-s', '-', - '--force', - '--timestamp', - '--deep', - '--verbose', - app_path, - ], check=True) subprocess.run([ 'codesign', '--verify', @@ -295,8 +286,8 @@ def build_mac( utils.print_title("Building .app via pyinstaller") call_tox(f'pyinstaller-64bit{"-qt5" if qt5 else ""}', '-r', debug=debug) - utils.print_title("Re-signing .app") - sign_mac_app() + utils.print_title("Verifying .app") + verify_mac_app() dist_path = pathlib.Path("dist") -- cgit v1.2.3-54-g00ecf