1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Use "brew list <name>" instead of grepping the output of "brew list".

Some brew packages are not listed with their package name, e.g. libjpeg.
This commit is contained in:
Dag Høidahl 2014-01-03 15:15:20 +01:00
parent 89abc35e59
commit 279098bd03

View file

@ -71,7 +71,7 @@ def query_package(module, brew_path, name, state="present"):
""" Returns whether a package is installed or not. """ """ Returns whether a package is installed or not. """
if state == "present": if state == "present":
rc, out, err = module.run_command("%s list -m1 | grep -q '^%s$'" % (brew_path, name)) rc, out, err = module.run_command("%s list %s" % (brew_path, name))
if rc == 0: if rc == 0:
return True return True