Merge pull request #836 from mkg20001/feat/unzip-quiet

feat: make unzip quiet
This commit is contained in:
Andre Miras 2019-02-25 19:36:53 +00:00 committed by GitHub
commit 93af45c46d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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))