From 032a734325cfcab15792458174648a5a9126f6fa Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Sun, 17 Jan 2016 15:47:18 -0500 Subject: [PATCH] A better description of why we're forcing 32-bit. --- script/bootstrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index 6eebebe9a..83ec712ff 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -90,7 +90,8 @@ function bootstrap() { var electronVersion = require('../package.json').electronVersion; moduleInstallEnv.npm_config_target = electronVersion; - // Atom on Windows is always 32-bit currently. + // Force 32-bit modules on Windows. + // /cc https://github.com/atom/atom/issues/10450 if (process.platform === 'win32') { moduleInstallEnv.npm_config_target_arch = 'ia32'; }