Skip to content

Commit

Permalink
Makefile: Add no-check-certificate to wget
Browse files Browse the repository at this point in the history
kostis committed May 16, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 35e179e commit 6302ea0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2010-2021 Manolis Papadakis <[email protected]>,
# Eirini Arvaniti <[email protected]>
# Eirini Arvaniti <[email protected]>,
# and Kostis Sagonas <[email protected]>
#
# This file is part of PropEr.
@@ -30,7 +30,8 @@ endif

REBAR3_URL := https://s3.amazonaws.com/rebar3/rebar3
REBAR3 ?= $(shell which rebar3 || which .$(SEP)rebar3 || \
(wget $(REBAR3_URL) && chmod +x rebar3 && echo .$(SEP)rebar3))
(wget --no-check-certificate $(REBAR3_URL) && \
chmod +x rebar3 && echo .$(SEP)rebar3))
COVER ?= false

default: compile

0 comments on commit 6302ea0

Please sign in to comment.