Update homebrew module.

This commit is contained in:
Daniel Jaouen 2014-03-28 19:20:51 -04:00
parent b566b27edd
commit e77c65af80

View file

@ -362,15 +362,17 @@ class Homebrew(object):
cmd = [
"{brew_path}".format(brew_path=self.brew_path),
"list",
"-m1",
"info",
self.current_package,
]
rc, out, err = self.module.run_command(cmd)
packages = [package for package in out.split('\n') if package]
if rc == 0 and self.current_package in packages:
for line in out.split('\n'):
if (
re.search(r'Built from source', line)
or re.search(r'Poured from bottle', line)
):
return True
else:
return False
def _outdated_packages(self):