|
|
@ -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
|
|
|
|