From 8cf2f4cd66d29c08e01a932c5a4146bfed2801d4 Mon Sep 17 00:00:00 2001 From: Igor Stoppa Date: Thu, 19 Jun 2014 12:26:14 +0300 Subject: [PATCH] Reduce wget output when downloading. Change-Id: I2492da49ec9c69b49ce9f55178d47906acf29c4d --- job_test_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/job_test_build.py b/job_test_build.py index 9187ecc..dd7b41a 100755 --- a/job_test_build.py +++ b/job_test_build.py @@ -22,7 +22,7 @@ def fetch_image(url): """Tries to download locally the image that will be tested.""" print "Attempt retrieving flashable image from %s ..." % url, try: - command = ["/usr/bin/wget", "-r", "-l1", "-np", "-nd", "-A", + command = ["/usr/bin/wget", "-r", "-l1", "-np", "-nd", "-q", "-A", os.getenv("TESTABLE_IMAGE_DOWNLOADABLES"), url] subprocess.check_output(command) image = glob.glob(os.getenv("TESTABLE_IMAGE_FILTER"))[0] -- 2.7.4