summaryrefslogtreecommitdiff
path: root/tsp/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'tsp/scripts')
-rwxr-xr-xtsp/scripts/download_all.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/tsp/scripts/download_all.py b/tsp/scripts/download_all.py
index 52399b9..9489ca1 100755
--- a/tsp/scripts/download_all.py
+++ b/tsp/scripts/download_all.py
@@ -184,8 +184,15 @@ class Downloader(threading.Thread):
sub_dwns.add(subprocess.Popen(["wget", "-cq", url], cwd=self.name))
for sub_dwn in sub_dwns:
sub_dwn.wait()
- if self.check_md5(md5sums):
+ r = self.session.head(md5sums)
+ if r.status_code == requests.codes.ok:
+ if self.check_md5(md5sums):
+ break
+ elif r.status_code == 404:
+ logging.debug("MD5SUMS missing: %s", md5sums)
break
+ else:
+ logging.warn("MD5SUMS error: %s", md5sums)
if self.work.is_set():
time.sleep(10)