Commit 55f63667 by Daniel Jaouen

homebrew_cask: return False instead of True when nothing to list.

parent 8a612ba5
...@@ -328,7 +328,7 @@ class HomebrewCask(object): ...@@ -328,7 +328,7 @@ class HomebrewCask(object):
rc, out, err = self.module.run_command(cmd) rc, out, err = self.module.run_command(cmd)
if 'nothing to list' in out: if 'nothing to list' in out:
return True return False
elif rc == 0: elif rc == 0:
casks = [cask_.strip() for cask_ in out.split('\n') if cask_.strip()] casks = [cask_.strip() for cask_ in out.split('\n') if cask_.strip()]
return self.current_cask in casks return self.current_cask in casks
......
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