From 10038bc87ae31cda14c90821a9158a8af8ea3d75 Mon Sep 17 00:00:00 2001 From: Adeel Date: Sun, 22 Feb 2015 20:55:14 +0200 Subject: [PATCH] Build: Uses v8 version instead of runtime name. The new binary path format is: `--/binding.node` Issue URL: #694. PR URL: #695. --- lib/extensions.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/extensions.js b/lib/extensions.js index 568c34561..841adc6c1 100644 --- a/lib/extensions.js +++ b/lib/extensions.js @@ -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();