Commit 62dc218e by Adeel

Build: Uses modules version instead of v8.

* Pointed out by @saper via #694.

PR URL: #743.
parent 2220ba96
......@@ -49,11 +49,9 @@ function getBinaryName() {
} else if (process.env.SASS_BINARY_NAME) {
binaryName = process.env.SASS_BINARY_NAME;
} else {
var v8SemVersion = process.versions.v8.split('.').slice(0, 3).join('.');
binaryName = [process.platform, '-',
process.arch, '-',
v8SemVersion].join('');
process.versions.modules].join('');
}
return [binaryName, 'binding.node'].join('_');
......
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