Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions installer/build_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,10 @@ def main():
app_name += "-x86_64.AppImage"
app_upload_bucket = "releases.openshot.org/linux"
elif platform.system() == "Darwin":
app_name += "-x86_64.dmg"
# Apple Silicon (arm64) and Intel (x86_64) Macs produce arch-suffixed
# DMGs so both can be published side-by-side to the mac release bucket.
mac_arch = "arm64" if platform.machine() == "arm64" else "x86_64"
app_name += "-%s.dmg" % mac_arch
app_upload_bucket = "releases.openshot.org/mac"
elif platform.system() == "Windows" and not windows_32bit:
app_name += "-x86_64.exe"
Expand Down Expand Up @@ -506,7 +509,7 @@ def main():
os.remove(app_build_path)

if platform.system() == "Darwin":
# Create DMG (OpenShot-%s-x86_64.DMG)
# Create DMG (OpenShot-%s-arm64.dmg or OpenShot-%s-x86_64.dmg)
app_image_success = False

# Build app.bundle and create DMG
Expand Down