summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcah <cah@ableton.com>2020-12-04 17:04:14 +0100
committercah <cah@ableton.com>2020-12-04 17:04:14 +0100
commit7dda4af7ae0fe7f8d218ac25d0a9e804b3bce852 (patch)
tree69dddad00895413d249027452109fab3ec29b0b4
parent4ca887165ae7c33cbd7c7a6937db2955a1a2238b (diff)
Fix over-eager debugging.
-rwxr-xr-xcdist2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdist b/cdist
index 7a5748b..a82c188 100755
--- a/cdist
+++ b/cdist
@@ -755,7 +755,7 @@ def notarize(dmg, bundle_id):
elif status == 'success':
subprocess.run(['xcrun', 'stapler', 'staple', dmg])
return
- else:
+ elif status != "in progress":
print("Could not understand xcrun response")
print(p)
time.sleep(30)