mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-12 11:51:10 +00:00
composer: simplify has_changed()
This commit is contained in:
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user