Skip to content

Commit

Permalink
Braid installer: allow forcing of 32-bit install from command line.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 18, 2010
1 parent 7a5e422 commit 5846cf6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/braid/scripts/config.lua
Expand Up @@ -4,8 +4,11 @@ local AMD64_INSTALL_SIZE = 20224358

local _ = MojoSetup.translate

-- grumble.
-- If we decide you have a 32-bit machine, we don't give you the install
-- choice. If we think you're on 64-bit, we'll ask which you want, defaulting
-- to 64.
local is32bit =
MojoSetup.cmdline("32bit") or
MojoSetup.info.machine == "x86" or
MojoSetup.info.machine == "i386" or
MojoSetup.info.machine == "i586" or
Expand Down

0 comments on commit 5846cf6

Please sign in to comment.