Skip to content

Commit 0a5723b

Browse files
committed
macdeploy: cleanup .temp.dmg if present
1 parent ecffe86 commit 0a5723b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

contrib/macdeploy/macdeployqtplus

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,9 @@ if os.path.exists(appname + ".dmg"):
423423
print("+ Removing existing DMG +")
424424
os.unlink(appname + ".dmg")
425425

426+
if os.path.exists(appname + ".temp.dmg"):
427+
os.unlink(appname + ".temp.dmg")
428+
426429
# ------------------------------------------------
427430

428431
target = os.path.join("dist", "Bitcoin-Qt.app")

0 commit comments

Comments
 (0)