diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-03 10:03:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-03 10:03:13 +0100 |
| commit | c49c9ce9ab82df1e4fec18194d426a68b800d7f1 (patch) | |
| tree | 363e0afc652e341f5bd823a8047b46adc70e445c | |
| parent | 6fae729b0d3702d1eb4401ff4041b825e5bd2eba (diff) | |
More debugging of flaky xcrun altool.
| -rwxr-xr-x | cdist | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -752,10 +752,11 @@ def notarize_dmg(dmg, bundle_id): raise Error('No RequestUUID found in response from Apple') for i in range(0, 30): - print('Checking up on %s' % request_uuid) + 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 %s' % status) + print('Got status: %s' % status) if status == 'invalid': raise Error("Notarization failed") elif status == 'success': |
