Skip to content

Commit

Permalink
Tells zip to be quiet when it creates archives (bug 693429)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar303 committed Oct 11, 2011
1 parent 02c01da commit 9e4c26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/versions/management/commands/fix_jetpack_xpis.py
Expand Up @@ -107,7 +107,7 @@ def fix_xpi(xpi, xpi_dir, new_version):
wd = os.getcwd()
try:
os.chdir(xpi_dir)
subprocess.check_call(['zip', '-r', xpi] + os.listdir(os.getcwd()))
subprocess.check_call(['zip', '-qr', xpi] + os.listdir(os.getcwd()))
finally:
os.chdir(wd)
return path.path(xpi)
Expand Down

0 comments on commit 9e4c26c

Please sign in to comment.