Skip to content

Commit

Permalink
travis test
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmdnk committed Sep 27, 2016
1 parent 06bb6fb commit dd92e0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/brew-file
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,9 @@ class BrewFile:
separate_err_msg=True)
packages = []
for l in lines:
if "Warning: nothing to list" in l or "==>" in l or "->" in l:
print(l)
if "Warning: nothing to list" in l or "=>" in l or "->" in l:
print('skip')
continue
packages.append(l)
return (True, lines)
Expand Down

0 comments on commit dd92e0c

Please sign in to comment.