Skip to content

Commit 6302ea0

Browse files
committed
Makefile: Add no-check-certificate to wget
1 parent 35e179e commit 6302ea0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2010-2021 Manolis Papadakis <[email protected]>,
2-
# Eirini Arvaniti <[email protected]>
2+
# Eirini Arvaniti <[email protected]>,
33
# and Kostis Sagonas <[email protected]>
44
#
55
# This file is part of PropEr.
@@ -30,7 +30,8 @@ endif
3030

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

3637
default: compile

0 commit comments

Comments
 (0)