homebrew_cask: check err instead of out for "nothing to list".

This commit is contained in:
Daniel Jaouen 2014-02-19 18:59:33 -05:00
parent fb526e1afb
commit fe362b79fd

View file

@ -327,7 +327,7 @@ class HomebrewCask(object):
cmd = [self.brew_path, 'cask', 'list']
rc, out, err = self.module.run_command(cmd)
if 'nothing to list' in out:
if 'nothing to list' in err:
return False
elif rc == 0:
casks = [cask_.strip() for cask_ in out.split('\n') if cask_.strip()]