From bf511cb6979ede33d17d9da6f46f71ea287461d8 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Fri, 30 Oct 2015 07:12:50 -0300 Subject: [PATCH] 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. --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."; \ -- 2.39.2