From 33858ebe38691f78d68a2a3f9efb19d5cc3e8d1d Mon Sep 17 00:00:00 2001 From: shivarammysore Date: Wed, 18 Jul 2012 18:37:01 -0700 Subject: [PATCH] Fix to overcome self signed SSL certificate error when issuing git pull command git pull is used to download project dependencies which reside on github. As we use self signed certificates, there is a error. To over come this, ssl CA certificate verification is turned off. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 76ac4b2..ee407ec 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ all: compile compile: rebar + git config --global http.sslVerify false ./rebar get-deps compile rel: compile