From: Brian Warner <warner@lothar.com>
Date: Thu, 21 May 2015 23:21:02 +0000 (-0700)
Subject: test-desert-island wasn't catching https downloads
X-Git-Tag: allmydata-tahoe-1.10.1a1~1
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/@manifest?a=commitdiff_plain;h=a517e007179b56e54ae9bae301704da72abb1ab0;p=tahoe-lafs%2Ftahoe-lafs.git

test-desert-island wasn't catching https downloads

I think the desert-island build is broken, but the automated test wasn't
catching it because of this bug.
---

diff --git a/misc/build_helpers/check-build.py b/misc/build_helpers/check-build.py
index e293c6a1..37381cd4 100644
--- a/misc/build_helpers/check-build.py
+++ b/misc/build_helpers/check-build.py
@@ -27,7 +27,8 @@ for line in open(build_out, "r"):
         # doesn't even try to check for new packages on remote hosts
         # if it has all the packages that it needs locally, but we
         # currently don't enforce that stronger requirement.
-        if line.startswith("Downloading http:"):
+        if (line.startswith("Downloading http:") or
+            line.startswith("Downloading https:")):
             print line,
             good = False
 if good: