Merge pull request #8475 from christophebiocca/fix-npm-command
Ensure npm packages actually are installed in a reachable way.pull/4420/head
commit
769a5738e3
|
@ -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…
Reference in New Issue