From 82f2dc7bd167c1c38a136b8f4ce558b8a8db5ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCrten?= <sebastian@mobanisto.de> Date: Fri, 12 May 2023 13:46:17 +0200 Subject: [PATCH] Check return code of macos verification --- verify-binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify-binary.py b/verify-binary.py index 0c3967c..4829c12 100755 --- a/verify-binary.py +++ b/verify-binary.py @@ -15,7 +15,7 @@ def main(): verified_linux = verify(tool, command_line_version, 'linux') verified_windows = verify(tool, command_line_version, 'windows') verified_macos = verify(tool, command_line_version, 'macos') - if verified_android and verified_linux and verified_windows: + if verified_android and verified_linux and verified_windows and verified_macos: sys.exit(0) else: sys.exit(1) -- GitLab