feat: make unzip quiet

I don't think the list of all files that unzip has extracted is really of any use.

At least for the NDK the amount of stuff it logs is huge.
This commit is contained in:
Maciej Krüger 2019-02-25 20:19:37 +01:00
parent 46bcf9575c
commit 17e8e81bca
No known key found for this signature in database
GPG key ID: 0D948CE19CF49C5F

View file

@ -661,7 +661,7 @@ class Buildozer(object):
return
if archive.endswith('.zip'):
self.cmd('unzip {}'.format(join(cwd, archive)), cwd=cwd)
self.cmd('unzip -q {}'.format(join(cwd, archive)), cwd=cwd)
return
raise Exception('Unhandled extraction for type {0}'.format(archive))