Skip to content

Commit 52cb68a

Browse files
author
Andrei Zavada
committed
use https:// when fetching deps from github
1 parent 9c5785e commit 52cb68a

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

rebar.config

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1+
%% -*- mode: erlang -*-
12
{require_otp_vsn, "20"}.
23

34
{deps,
45
[
56
{folsom, "0.8.7"},
6-
{lager, "2.*", {git, "git://github.com/erlang-lager/lager", {tag, "3.8.0"}}},
7-
{ibrowse, ".*",
8-
{git, "git://github.com/basho/ibrowse.git", {branch, "develop-3.0"}}},
9-
{riakc, ".*",
10-
{git, "git://github.com/basho/riak-erlang-client", {branch, "develop-3.0"}}},
11-
{mochiweb, "2.9.*",
12-
{git, "git://github.com/basho/mochiweb", {branch, "develop-3.0"}}},
13-
{getopt, ".*",
14-
{git, "git://github.com/jcomellas/getopt", {tag, "v0.8.2"}}},
15-
{bitcask, ".*",
16-
{git, "git://github.com/basho/bitcask", {branch, "develop-3.0"}}},
17-
{eleveldb, ".*",
18-
{git, "git://github.com/basho/eleveldb", {branch, "develop-3.0"}}}
7+
{lager, {git, "https://github.com/erlang-lager/lager", {tag, "3.8.0"}}},
8+
{ibrowse, {git, "https://github.com/basho/ibrowse.git", {branch, "develop-3.0"}}},
9+
{riakc, {git, "https://github.com/basho/riak-erlang-client", {branch, "develop-3.0"}}},
10+
{mochiweb, {git, "https://github.com/basho/mochiweb", {branch, "develop-3.0"}}},
11+
{getopt, {git, "https://github.com/jcomellas/getopt", {tag, "v0.8.2"}}},
12+
{bitcask, {git, "https://github.com/basho/bitcask", {branch, "develop-3.0"}}},
13+
{eleveldb, {git, "https://github.com/basho/eleveldb", {branch, "develop-3.0"}}}
1914
]}.
2015

2116
{erl_opts, [{src_dirs, [src]},

0 commit comments

Comments
 (0)