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/lib
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2011-10-14 19:14:10 +0400
committerisaacs <i@izs.me>2011-10-14 19:14:10 +0400
commita95cead243a64a461e441bba9694103ae2a14911 (patch)
tree3875b11dbab6b1cb4d7416bcfef40a2e953f5839 /lib
parent7a6f190ef560e2a8a961b7493ee5d220f0984dd2 (diff)
typo
Diffstat (limited to 'lib')
-rw-r--r--lib/cache.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache.js b/lib/cache.js
index f9309e7a5..9e5176564 100644
--- a/lib/cache.js
+++ b/lib/cache.js
@@ -593,7 +593,7 @@ function addPlacedTarball_ (p, name, uid, gid, cb) {
sha.get(p, function (er, shasum) {
if (er) return log.er(cb, "couldn't validate shasum of "+p)(er)
readJson(path.join(folder, "package.json"), function (er, data) {
- if (er) return log.er(cb, "coulnd't read json in "+folder)(er)
+ if (er) return log.er(cb, "couldn't read json in "+folder)(er)
data.dist = data.dist || {}
if (shasum) data.dist.shasum = shasum
deprCheck(data)