composer: simplify has_changed()

reviewable/pr18780/r1
Rene Moser 9 years ago
parent ea1bd0b078
commit 0b0cc7b049

@ -109,10 +109,7 @@ def parse_out(string):
return re.sub("\s+", " ", string).strip()
def has_changed(string):
if "Nothing to install or update" in string:
return False
else:
return True
return "Nothing to install or update" not in string
def composer_install(module, command, options):
php_path = module.get_bin_path("php", True, ["/usr/local/bin"])

Loading…
Cancel
Save