mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Merge pull request #5489 from daghoidahl/devel
Use "brew list <name>" instead of grepping the output of "brew list". Fix for #5488
This commit is contained in:
@@ -71,7 +71,7 @@ def query_package(module, brew_path, name, state="present"):
|
||||
""" Returns whether a package is installed or not. """
|
||||
|
||||
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:
|
||||
return True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user