We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 681db4c + 119e5a3 commit dcf9651Copy full SHA for dcf9651
packaging/composer.py
@@ -101,7 +101,10 @@ def parse_out(string):
101
return re.sub("\s+", " ", string).strip()
102
103
def has_changed(string):
104
- return (re.match("Nothing to install or update", string) != None)
+ if "Nothing to install or update" in string:
105
+ return False
106
+ else:
107
+ return True
108
109
def composer_install(module, command, options):
110
php_path = module.get_bin_path("php", True, ["/usr/local/bin"])
0 commit comments