Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
deps: mark our installable flag as internal
Browse files Browse the repository at this point in the history
PR-URL: #9928
  • Loading branch information
iarna committed Oct 15, 2015
1 parent 25a234b commit 4f50366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/install/deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,10 @@ function resolveWithNewModule (pkg, tree, log, next) {
}))
}

if (!pkg.installable) {
if (!pkg._installable) {
log.silly('resolveWithNewModule', packageId(pkg), 'checking installable status')
return isInstallable(pkg, iferr(next, function () {
pkg.installable = true
pkg._installable = true
resolveWithNewModule(pkg, tree, log, next)
}))
}
Expand Down

0 comments on commit 4f50366

Please sign in to comment.