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:
parent
46bcf9575c
commit
17e8e81bca
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue