Skip to content

Commit

Permalink
A better description of why we're forcing 32-bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshaber committed Jan 17, 2016
1 parent e87c904 commit 032a734
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand Down

0 comments on commit 032a734

Please sign in to comment.