From 8db2e4923b4ef6e86cc425c90a99f55df7099765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Mon, 13 Aug 2012 00:05:42 +0200 Subject: [PATCH] Download rebar from github --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index cadc9d6..bf6381c 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,8 @@ REBAR=$(shell which rebar || echo ./rebar) all: compile ./rebar: - erl -noshell -s inets start \ - -eval 'httpc:request(get, {\ - "http://hg.basho.com/rebar/downloads/rebar", []\ - }, [], [{stream, "./rebar"}])' \ + erl -noshell -s inets start -s ssl start \ + -eval 'httpc:request(get, {"https://github.com/downloads/basho/rebar/rebar", []}, [], [{stream, "./rebar"}])' \ -s init stop chmod +x ./rebar