Ensure named packages not in top level are marked as missing.

reviewable/pr18780/r1
Christophe Biocca 10 years ago
parent f0ae6204e4
commit 4f43607c9b

@ -163,6 +163,8 @@ class Npm(object):
missing.append(dep)
else:
installed.append(dep)
if self.name and self.name not in installed:
missing.append(self.name)
#Named dependency not installed
else:
missing.append(self.name)

Loading…
Cancel
Save