commit 6c1246589f13a4c7194ceec5744be6a60a75feb7
parent 0feea4bb9f879d9d8d1f09ff607e257cfd7f8193
Author: Alexandre Lissy <lissyx+mozillians@lissyx.dyndns.org>
Date: Thu, 11 Dec 2025 18:09:56 +0000
Bug 2005445 - Remove duplicated check=True r=ahochheiden
Differential Revision: https://phabricator.services.mozilla.com/D275941
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/signing/macos/mach_commands.py b/tools/signing/macos/mach_commands.py
@@ -540,7 +540,7 @@ def sign_with_codesign(
for binary_path in binary_paths:
cs_cmd.append(binary_path)
- run(ctx, cs_cmd, capture_output=not verbose_arg, check=True)
+ run(ctx, cs_cmd, capture_output=not verbose_arg)
for temp_file in temp_files_to_cleanup:
os.remove(temp_file)
@@ -567,7 +567,7 @@ def verify_result(ctx, app, verbose_arg):
# Verbosely verify validity of signed app
cs_verify_cmd = ["codesign", "-vv", app]
try:
- run(ctx, cs_verify_cmd, capture_output=not verbose_arg, check=True)
+ run(ctx, cs_verify_cmd, capture_output=not verbose_arg)
ctx.log(
logging.INFO,
"macos-sign",
@@ -696,7 +696,7 @@ def sign_with_rcodesign(
scoped_arg = binary_path_relative + ":" + entitlement_file
cs_cmd.append(scoped_arg)
- run(ctx, cs_cmd, capture_output=not verbose_arg, check=True)
+ run(ctx, cs_cmd, capture_output=not verbose_arg)
for temp_file in temp_files_to_cleanup:
os.remove(temp_file)