Commit 8a612ba5 by Daniel Jaouen

Handle homebrew_cask "nothing to list" corner case.

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