Reduce wget output when downloading.
authorIgor Stoppa <igor.stoppa@intel.com>
Thu, 19 Jun 2014 09:26:14 +0000 (12:26 +0300)
committerLin A Yang <lin.a.yang@intel.com>
Mon, 7 Jul 2014 09:16:49 +0000 (12:16 +0300)
Change-Id: I2492da49ec9c69b49ce9f55178d47906acf29c4d

job_test_build.py

index 9187ecc..dd7b41a 100755 (executable)
@@ -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]