Skip to content

Commit

Permalink
Merge pull request #836 from mkg20001/feat/unzip-quiet
Browse files Browse the repository at this point in the history
feat: make unzip quiet
  • Loading branch information
AndreMiras authored Feb 25, 2019
2 parents 46bcf95 + 17e8e81 commit 93af45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildozer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ def file_extract(self, archive, cwd=None):
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))
Expand Down

0 comments on commit 93af45c

Please sign in to comment.