mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
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:
parent
1dd0ec3991
commit
bf511cb697
1 changed files with 1 additions and 1 deletions
|
@ -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."; \
|
||||
|
|
Loading…
Reference in a new issue