]> git.notmuchmail.org Git - notmuch/commitdiff
release: disable wget certificate check 0.21 debian/0.21-1
authorDavid Bremner <david@tethera.net>
Fri, 30 Oct 2015 10:12:50 +0000 (07:12 -0300)
committerDavid Bremner <david@tethera.net>
Fri, 30 Oct 2015 10:14:41 +0000 (07:14 -0300)
this is a minor security hole, but no worse than what we had before. In
particular the worst that happens is someone prevents us from making a
release. Which is hardly worth the trouble of jacking the URL.

Makefile.local

index d58cea04746a498efe0b2016822b6671822f631c..066ecf23360c469eddb0c16490141c6f99541489 100644 (file)
@@ -224,7 +224,7 @@ release-checks:
 .PHONY: verify-newer
 verify-newer:
        @echo -n "Checking that no $(VERSION) release already exists..."
-       @wget -q -O /dev/null $(RELEASE_URL)/$(TAR_FILE) ; \
+       @wget -q --no-check-certificate -O /dev/null $(RELEASE_URL)/$(TAR_FILE) ; \
        case $$? in \
           8) echo "Good." ;; \
           0) echo "Ouch."; \