node: fix path patch
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
This commit is contained in:
parent
162c6a70c9
commit
2a42edabdb
1 changed files with 7 additions and 6 deletions
|
@ -1,12 +1,13 @@
|
|||
--- a/lib/module.js
|
||||
+++ b/lib/module.js
|
||||
@@ -453,7 +453,8 @@ Module._initPaths = function() {
|
||||
homeDir = process.env.HOME;
|
||||
@@ -625,7 +625,8 @@
|
||||
} else {
|
||||
prefixDir = path.resolve(process.execPath, '..', '..');
|
||||
}
|
||||
|
||||
- var paths = [path.resolve(process.execPath, '..', '..', 'lib', 'node')];
|
||||
+ var paths = [path.resolve(process.execPath, '..', '..', 'lib', 'node'),
|
||||
+ path.resolve(process.execPath, '..', '..', 'lib', 'node_modules')];
|
||||
- var paths = [path.resolve(prefixDir, 'lib', 'node')];
|
||||
+ var paths = [path.resolve(prefixDir, 'lib', 'node'),
|
||||
+ path.resolve(prefixDir, 'lib', 'node_modules')];
|
||||
|
||||
if (homeDir) {
|
||||
paths.unshift(path.resolve(homeDir, '.node_libraries'));
|
||||
|
Loading…
Reference in a new issue