outdated needed to see set changed

This commit is contained in:
Joey Baker 2014-02-07 15:50:17 -08:00
parent 2768655119
commit 603b051f71

View file

@ -209,7 +209,11 @@ def main():
changed = True
npm.install()
elif state == 'latest':
npm.install()
installed, missing = npm.list()
outdated = npm.list_outdated()
if len(missing) or len(outdated):
changed = True
npm.install()
else: #absent
installed, missing = npm.list()
if name in installed: