From 3e074d8f26f8a20ef8d096d6b415119adf086137 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 3 Feb 2021 10:07:28 +0100 Subject: [PATCH] Tone down previous commit a little. --- cdist | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cdist b/cdist index 5abc82e..3db8637 100755 --- a/cdist +++ b/cdist @@ -754,9 +754,8 @@ def notarize_dmg(dmg, bundle_id): for i in range(0, 30): print('%s: checking up on %s' % (datetime.datetime.now(), request_uuid)) p = subprocess.run(['xcrun', 'altool', '--notarization-info', request_uuid, '-u', config.get('apple_id'), '-p', config.get('apple_password'), '--output-format', 'xml'], capture_output=True) - print('%s: %s' % (datetime.datetime.now(), p)) status = string_after(p, 'Status') - print('Got status: %s' % status) + print('%s: got status %s' % (datetime.datetime.now(), status)) if status == 'invalid': raise Error("Notarization failed") elif status == 'success': -- 2.30.2