From e79576f94627b350ecf488492e32907ec21ea266 Mon Sep 17 00:00:00 2001 From: Aleksander Mistewicz Date: Tue, 21 Nov 2017 13:07:04 +0100 Subject: [PATCH] Use upper-case md5sums file name Change-Id: Ic7d1b8fc56ebb492404dc4153aa0d3846f776d14 --- tsp/scripts/download_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsp/scripts/download_all.py b/tsp/scripts/download_all.py index e640a91..05b1254 100755 --- a/tsp/scripts/download_all.py +++ b/tsp/scripts/download_all.py @@ -223,7 +223,7 @@ class Downloader(threading.Thread): def check_md5(self, md5sum_url): logging.debug("Checking md5sum") - md5_file = "md5sums" + md5_file = "MD5SUMS" md5_path = self.name + "/" + md5_file subprocess.call(["wget", md5sum_url, "-qO", md5_path]) subprocess.call(["sed", "-e", "/\(ks\|json\|log\|xml\|-default\|packages\)/d", "-i", md5_path]) -- 2.7.4