Commit 15023141 by Andrew Nesbitt

Merge pull request #133 from jmreidy/master

Allow rebuild on Mac
parents 2d77a58d 8619228a
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