diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-03 10:07:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-03 10:07:28 +0100 |
| commit | 3e074d8f26f8a20ef8d096d6b415119adf086137 (patch) | |
| tree | 0c3696e3a76f2e0af563cbf3fc89f6c479cc3188 | |
| parent | c49c9ce9ab82df1e4fec18194d426a68b800d7f1 (diff) | |
Tone down previous commit a little.
| -rwxr-xr-x | cdist | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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': |
