Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 7f292de

Browse files
committed
[21673] Ensure the Mac autoupdater is 64-bit
1 parent 039d49f commit 7f292de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

builder/tools_builder.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ private command toolsBuilderMakeInstaller pVersion, pEdition, pPlatform, pIdeFol
526526
put tInstallerStackFile into tParams["stackfile"]
527527
put tOutputFileStub & ".app" & slash & "Contents/MacOS/Installer" into tParams["output"]
528528

529-
-- We deploy as 32-bit only for now as the 64-bit slice isn't neccessary
530-
put "i386" into tParams["architectures"]
529+
-- We deploy as 64-bit only as 32-bit apps will be blocked on MacOS 10.15+
530+
put "x86_64" into tParams["architectures"]
531531

532532
put url ("binfile:" & pPackageFile) into url ("binfile:" & tOutputFileStub & ".app" & slash & "Contents/Resources/payload")
533533

docs/notes/bugfix-21673.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure the Mac autoupdater is 64-bit

0 commit comments

Comments
 (0)