From 605a59552bef0618bd5140cbbd179b04858b320f Mon Sep 17 00:00:00 2001 From: Christopher Aillon Date: Tue, 15 Mar 2011 13:49:54 -0700 Subject: Silence wget output pass --quiet --- scripts/moz-grab-langpacks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/moz-grab-langpacks b/scripts/moz-grab-langpacks index 65f83e8..d60676d 100755 --- a/scripts/moz-grab-langpacks +++ b/scripts/moz-grab-langpacks @@ -123,7 +123,7 @@ def create_langpack_tarball(app, version, url, use_xz=True): print 'Downloading .xpi files...' acclist = '??.xpi,???.xpi,??-??.xpi,*.langpack.xpi' rejlist = 'en-US.xpi,*en-US.langpack.xpi' - wgetcmd = ['wget', '-r', '-nd', '-np', '--accept', acclist, '--reject', rejlist, url] + wgetcmd = ['wget', '--quiet', '-r', '-nd', '-np', '--accept', acclist, '--reject', rejlist, url] subprocess.call(wgetcmd) # But we don't gotta keep em all -- cgit