Skip to content

Commit eb2a11c

Browse files
committed
Braid installer: allow forcing of 32-bit install from command line.
1 parent a63201a commit eb2a11c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/braid/scripts/config.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ local AMD64_INSTALL_SIZE = 20224358
44

55
local _ = MojoSetup.translate
66

7-
-- grumble.
7+
-- If we decide you have a 32-bit machine, we don't give you the install
8+
-- choice. If we think you're on 64-bit, we'll ask which you want, defaulting
9+
-- to 64.
810
local is32bit =
11+
MojoSetup.cmdline("32bit") or
912
MojoSetup.info.machine == "x86" or
1013
MojoSetup.info.machine == "i386" or
1114
MojoSetup.info.machine == "i586" or

0 commit comments

Comments
 (0)