From f17e96b248822550b0a922fa5cdd5665577658a5 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 28 Dec 2020 11:00:13 +0200 Subject: [PATCH] build script: disable ad-hoc code sign it requires a different approach to sign application bundles --- build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index 01d78c70..466539e0 100755 --- a/build.py +++ b/build.py @@ -1776,9 +1776,9 @@ class Builder(object): # TODO: check if ad-hoc code signing is really needed # See https://github.com/Homebrew/brew/commit/e945b1c42ab44feb1c6814f47cc833d76b1a921c - if is_executable: - args = ('codesign', '--sign', '-', dst_file) - subprocess.check_call(args) + # if is_executable: + # args = ('codesign', '--sign', '-', dst_file) + # subprocess.check_call(args) else: if not Builder._compare_files(src_sub_paths): print(f'WARNING: Source files for {dst_path + os.sep + src.name} don\'t match')