mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6355 from hkariti/npm_install_invalid
Add a package to missing list if npm list reported it as invalid
This commit is contained in:
commit
eaef86d22b
1 changed files with 2 additions and 0 deletions
|
@ -143,6 +143,8 @@ class Npm(object):
|
||||||
for dep in data['dependencies']:
|
for dep in data['dependencies']:
|
||||||
if 'missing' in data['dependencies'][dep] and data['dependencies'][dep]['missing']:
|
if 'missing' in data['dependencies'][dep] and data['dependencies'][dep]['missing']:
|
||||||
missing.append(dep)
|
missing.append(dep)
|
||||||
|
elif 'invalid' in data['dependencies'][dep] and data['dependencies'][dep]['invalid']:
|
||||||
|
missing.append(dep)
|
||||||
else:
|
else:
|
||||||
installed.append(dep)
|
installed.append(dep)
|
||||||
#Named dependency not installed
|
#Named dependency not installed
|
||||||
|
|
Loading…
Reference in a new issue