macdeploy: cleanup .temp.dmg if present

pull/22199/head
fanquake 3 years ago
parent ecffe8689d
commit 0a5723beea
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

@ -423,6 +423,9 @@ if os.path.exists(appname + ".dmg"):
print("+ Removing existing DMG +")
os.unlink(appname + ".dmg")
if os.path.exists(appname + ".temp.dmg"):
os.unlink(appname + ".temp.dmg")
# ------------------------------------------------
target = os.path.join("dist", "Bitcoin-Qt.app")

Loading…
Cancel
Save