mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 07:11:25 +00:00
Handle homebrew_cask "nothing to list" corner case.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user