We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e179e commit 6302ea0Copy full SHA for 6302ea0
Makefile
@@ -1,5 +1,5 @@
1
# Copyright 2010-2021 Manolis Papadakis <manopapad@gmail.com>,
2
-# Eirini Arvaniti <eirinibob@gmail.com>
+# Eirini Arvaniti <eirinibob@gmail.com>,
3
# and Kostis Sagonas <kostis@cs.ntua.gr>
4
#
5
# This file is part of PropEr.
@@ -30,7 +30,8 @@ endif
30
31
REBAR3_URL := https://s3.amazonaws.com/rebar3/rebar3
32
REBAR3 ?= $(shell which rebar3 || which .$(SEP)rebar3 || \
33
- (wget $(REBAR3_URL) && chmod +x rebar3 && echo .$(SEP)rebar3))
+ (wget --no-check-certificate $(REBAR3_URL) && \
34
+ chmod +x rebar3 && echo .$(SEP)rebar3))
35
COVER ?= false
36
37
default: compile
0 commit comments