From 0c4e7276ea6edc177421130f14ebf880d2738ae0 Mon Sep 17 00:00:00 2001 From: Aaron Franks Date: Fri, 9 Aug 2013 12:10:52 -0700 Subject: [PATCH] Fix crashing bug from typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index e528def..e9be1c0 100644 --- a/index.js +++ b/index.js @@ -26,7 +26,7 @@ for (key in version_map) { // if lib_ver stays undefined require will fail and we'll catch it // same behaviour when there's a new version of node and we haven't // compiled for it yet -var modpath = "./compiled/" + platform + "/" + `.arch + "/" + lib_ver +var modpath = "./compiled/" + platform + "/" + process.arch + "/" + lib_ver + "/profiler"; var buildpath = "./build/Release/profiler";