Commit 8619228a by Justin Reidy

Allow rebuild on Mac

Not sure why, but spawn changes in Node v0.10.x meant that `rebuild.js`
never exited successfully without passing stdio. (#131, #123)
parent 2d77a58d
This diff was suppressed by a .gitattributes entry.
...@@ -4,5 +4,5 @@ var spawn = require('child_process').spawn; ...@@ -4,5 +4,5 @@ var spawn = require('child_process').spawn;
// the toolchain exists. This is here to not rebuild on windows, as that // the toolchain exists. This is here to not rebuild on windows, as that
// had issues as of https://github.com/andrew/node-sass/issues/123 // had issues as of https://github.com/andrew/node-sass/issues/123
if (process.platform === 'darwin' || process.platform === 'linux') { if (process.platform === 'darwin' || process.platform === 'linux') {
spawn('node-gyp', ['rebuild']); spawn('node-gyp', ['rebuild'], {stdio: 'inherit'});
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment