mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
macdeploy: cleanup .temp.dmg if present
This commit is contained in:
parent
ecffe8689d
commit
0a5723beea
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue