Commit 81f2e43b by Daniel Jaouen

Fix Homebrew._current_package_is_installed

parent 6748ef12
...@@ -360,14 +360,15 @@ class Homebrew(object): ...@@ -360,14 +360,15 @@ class Homebrew(object):
self.message = 'Invalid package: {0}.'.format(self.current_package) self.message = 'Invalid package: {0}.'.format(self.current_package)
raise HomebrewException(self.message) raise HomebrewException(self.message)
rc, out, err = self.module.run_command( cmd = [
"{brew_path} list -m1 | grep -q '^{package}$'".format( "{brew_path}".format(brew_path=self.brew_path),
brew_path=self.brew_path, "list",
package=self.current_package, "-m1",
) ]
) rc, out, err = self.module.run_command(cmd)
packages = [package for package in out.split('\n') if package]
if rc == 0: if rc == 0 and self.current_package in packages:
return True return True
else: else:
return False return False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment