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.
This commit is contained in:
David Bremner 2015-10-30 07:12:50 -03:00
parent 1dd0ec3991
commit bf511cb697

View 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."; \