Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build_files/buildbot/codesign/windows_code_signer.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/build_files/buildbot/codesign/windows_code_signer.py b/build_files/buildbot/codesign/windows_code_signer.py
index 251dd856c8a..db185788a56 100644
--- a/build_files/buildbot/codesign/windows_code_signer.py
+++ b/build_files/buildbot/codesign/windows_code_signer.py
@@ -64,7 +64,12 @@ class WindowsCodeSigner(BaseCodeSigner):
def run_codesign_tool(self, filepath: Path) -> None:
command = self.get_sign_command_prefix() + [filepath]
- codesign_output = self.check_output_or_mock(command, util.Platform.WINDOWS)
+
+ try:
+ codesign_output = self.check_output_or_mock(command, util.Platform.WINDOWS)
+ except subprocess.CalledProcessError as e:
+ raise SigntoolException(f'Error running signtool {e}')
+
logger_server.info(f'signtool output:\n{codesign_output}')
got_number_of_success = False