mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Remove double .dmg at the end of file name.
Fix typo in msi_instaler CURA-6867
This commit is contained in:
parent
116d2b9ce5
commit
0f683d301a
2 changed files with 3 additions and 5 deletions
|
|
@ -129,13 +129,11 @@ def create_dmg(filename: str, dist_path: str, source_path: str) -> None:
|
|||
@param source_path: The location of the project source files
|
||||
"""
|
||||
|
||||
dmg_filename = f"{filename}.dmg"
|
||||
|
||||
build_dmg(source_path, dist_path, dmg_filename)
|
||||
build_dmg(source_path, dist_path, filename)
|
||||
|
||||
notarize_dmg = bool(os.environ.get("NOTARIZE_DMG", "TRUE"))
|
||||
if notarize_dmg:
|
||||
notarize_file(dist_path, dmg_filename)
|
||||
notarize_file(dist_path, filename)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue