Skip to content

Commit

Permalink
Build: Uses modules version instead of v8.
Browse files Browse the repository at this point in the history
* Pointed out by @saper via sass#694.
PR URL: sass#743.
  • Loading branch information
am11 committed Mar 9, 2015
1 parent e777b85 commit 9923a35
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,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('_');
Expand Down

0 comments on commit 9923a35

Please sign in to comment.