From: David Bremner Date: Fri, 30 Oct 2015 10:12:50 +0000 (-0300) Subject: release: disable wget certificate check X-Git-Tag: debian/0.21-1 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=380f7c161c63985650fb4cfc55b03c2b43feedb5;hp=1dd0ec39916cdd31aa91f3dbdfd91a071d5d2727;p=notmuch release: disable wget certificate check 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. --- diff --git a/Makefile.local b/Makefile.local index d58cea04..066ecf23 100644 --- a/Makefile.local +++ b/Makefile.local @@ -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."; \