Pass --verbose to Homebrew.

The homebrew progress bars cause Travis to bail out because the 4MB maximum log
size was reached. Ironically, that does not happen with --verbose.
This commit is contained in:
Florian Bruhin 2015-09-29 06:26:26 +02:00
parent 590caa53f5
commit 866017f9c1

View File

@ -48,7 +48,7 @@ def brew(args, silent=False):
with open(os.devnull, 'w') as f:
subprocess.check_call(['brew'] + args, stdout=f)
else:
subprocess.check_call(['brew'] + args)
subprocess.check_call(['brew'] + args + ['--verbose'])
def check_setup(executable):