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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/npm.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-03-24 21:56:02 +0300
committerisaacs <i@izs.me>2010-03-24 21:56:02 +0300
commiteed00a6c7f3c1890d515cd097a91b2e878a6ef1c (patch)
tree55875958d71025925c12deab47ce21b5882307d4 /npm.js
parentaba742437755a3c3a2c7c06113afb85060d7eb59 (diff)
typo leading to the wrong tmp folder
Diffstat (limited to 'npm.js')
-rwxr-xr-xnpm.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/npm.js b/npm.js
index 36877ea85..ebe0e643f 100755
--- a/npm.js
+++ b/npm.js
@@ -47,7 +47,7 @@ Object.defineProperty(npm, "dir",
, enumerable:true
});
Object.defineProperty(npm, "tmp",
- { get: function () { return path.join(npm.root, ".npm", "tmp") }
+ { get: function () { return path.join(npm.root, ".npm", ".tmp") }
, enumerable:true
});