diff --git a/buildozer/__init__.py b/buildozer/__init__.py index 5f00a50fc..41be85170 100644 --- a/buildozer/__init__.py +++ b/buildozer/__init__.py @@ -692,8 +692,9 @@ def report_hook(index, blksize, size): else: progression = '{0:.2f}%'.format( index * blksize * 100. / float(size)) - stdout.write('- Download {}\r'.format(progression)) - stdout.flush() + if "CI" not in environ: + stdout.write('- Download {}\r'.format(progression)) + stdout.flush() url = url + filename if cwd: