From fdc69f6ea67933892639ae45dcf9bffcc8216f84 Mon Sep 17 00:00:00 2001 From: Ery Lee Date: Tue, 6 Jan 2015 10:47:06 +0800 Subject: [PATCH] fix deps --- Makefile | 6 +++--- rebar.config | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 17970a877..72e436459 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ -all: deps compile +all: dep compile -compile: deps +compile: dep ./rebar compile -deps: +dep: ./rebar get-deps clean: diff --git a/rebar.config b/rebar.config index 7c558a08e..50069b6c4 100644 --- a/rebar.config +++ b/rebar.config @@ -12,5 +12,5 @@ {deps, [ {lager, ".*", {git, "git://github.com/basho/lager.git", {branch, "master"}}}, {esockd, ".*", {git, "git://github.com/slimpp/esockd.git", {branch, "master"}}}, - {mochiweb, ".*", {git, "git@github.com:slimpp/mochiweb.git", {branch, "master"}}} + {mochiweb, ".*", {git, "git://github.com/slimpp/mochiweb.git", {branch, "master"}}} ]}.