homebrew_cask: check err instead of out for "nothing to list".
parent
55f636675c
commit
911a3930a6
|
@ -327,7 +327,7 @@ class HomebrewCask(object):
|
||||||
cmd = [self.brew_path, 'cask', 'list']
|
cmd = [self.brew_path, 'cask', 'list']
|
||||||
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 err:
|
||||||
return False
|
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()]
|
||||||
|
|
Loading…
Reference in New Issue