Skip to content

Commit

Permalink
[build] ship with the 32bit version of node on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Aug 17, 2015
1 parent b0f16bb commit 3d2812c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/config/platforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = function (grunt) {
].map(function (name) {
let win = name === 'windows';

let nodeUrl = win ? `${baseUri}/win-x64/iojs.exe` : `${baseUri}/iojs-v${nodeVersion}-${name}.tar.gz`;
let nodeUrl = win ? `${baseUri}/win-x86/iojs.exe` : `${baseUri}/iojs-v${nodeVersion}-${name}.tar.gz`;
let nodeDir = resolve(rootPath, `.node_binaries/${nodeVersion}/${name}`);

let buildName = `kibana-${version}-${name}`;
Expand Down

0 comments on commit 3d2812c

Please sign in to comment.