mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
outdated needed to see set changed
This commit is contained in:
parent
242bfd8c68
commit
5655ffa8bf
1 changed files with 5 additions and 1 deletions
|
@ -209,6 +209,10 @@ def main():
|
|||
changed = True
|
||||
npm.install()
|
||||
elif state == 'latest':
|
||||
installed, missing = npm.list()
|
||||
outdated = npm.list_outdated()
|
||||
if len(missing) or len(outdated):
|
||||
changed = True
|
||||
npm.install()
|
||||
else: #absent
|
||||
installed, missing = npm.list()
|
||||
|
|
Loading…
Reference in a new issue