A better description of why we're forcing 32-bit.

This commit is contained in:
Josh Abernathy 2016-01-17 15:47:18 -05:00
parent e87c90449e
commit 032a734325

View File

@ -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';
}