From: David Bremner Date: Fri, 30 Oct 2015 10:12:50 +0000 (-0300) Subject: release: disable wget certificate check X-Git-Tag: 0.21^0 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=bf511cb6979ede33d17d9da6f46f71ea287461d8 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."; \