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>2010-05-06 01:54:56 +0400
committerisaacs <i@izs.me>2010-05-06 01:54:56 +0400
commit2a316a42bbed8549623cf2adfe4a54af751847da (patch)
treea3977db8acda6ec01b711e0cde8c7ecdbe0a230f /lib
parent0c3e3ac88ba40f19e6275c723f88983d87de77c5 (diff)
Missing relevant semicolon
Diffstat (limited to 'lib')
-rw-r--r--lib/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/build.js b/lib/build.js
index fc3f61f2f..2e6408635 100644
--- a/lib/build.js
+++ b/lib/build.js
@@ -137,7 +137,7 @@ function resolveDependencies (pkg, topCb) {
for (var i in pkg.dependencies) reqs.push({name:i, version:pkg.dependencies[i]})
if (!reqs.length) return topCb()
- (function R (req) {
+ ;(function R (req) {
if (!req) return cb()
log(req.name+" "+req.version, "required")
// see if we have this thing installed.