Skip to content

Commit

Permalink
Build: Uses v8 version instead of runtime name.
Browse files Browse the repository at this point in the history
The new binary path format is:
`<platform>-<arch>-<v8 version>/binding.node`

Issue URL: sass#694.
PR URL: sass#695.
  • Loading branch information
am11 committed Feb 22, 2015
1 parent 8c3bd77 commit 10038bc
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 @@ -32,9 +32,7 @@ function getRuntimeInfo() {
function getBinaryIdentifiableName() {
return [process.platform, '-',
process.arch, '-',
process.runtime.name, '-',
runtimeVersion.major, '.',
runtimeVersion.minor].join('');
process.versions.v8].join('');
}

process.runtime = getRuntimeInfo();
Expand Down

0 comments on commit 10038bc

Please sign in to comment.