Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geisendörfer <felix@debuggable.com>2011-01-13 01:42:21 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-13 03:07:36 +0300
commitf5fbb707b2c70053688448d2173f83644b134d70 (patch)
treeddfc2b67fc0c356ba17162734331c580aa74b439
parentf61277ecb0614e09856d7eacceb3972739b27b14 (diff)
Fix NODE_PATH, was broken after cleanup
-rw-r--r--src/node.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node.js b/src/node.js
index 93492cffd87..ca21dfaf7f9 100644
--- a/src/node.js
+++ b/src/node.js
@@ -402,7 +402,7 @@
}
if (process.env['NODE_PATH']) {
- paths = process.env['NODE_PATH'].split(':').concat(Module._paths);
+ paths = process.env['NODE_PATH'].split(':').concat(paths);
}
Module._paths = paths;