Browse Source

Change deps URIs from git to https protocols

Some unfortunate users are behind restrictive firewalls
which block the git protocol. HTTPS on the other hand
works almost everywhere.
Matt Campbell 13 years ago
parent
commit
41124729c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rebar.config

+ 2 - 2
rebar.config

@@ -1,9 +1,9 @@
 %% -*- erlang -*-
 {erl_opts, [debug_info]}.
 {deps, [
-        {edown, ".*", {git, "git://github.com/esl/edown.git", "HEAD"}},
+        {edown, ".*", {git, "https://github.com/esl/edown.git", "HEAD"}},
         {gen_leader, ".*",
-         {git, "git://github.com/abecciu/gen_leader_revival.git", "HEAD"}}
+         {git, "https://github.com/abecciu/gen_leader_revival.git", "HEAD"}}
        ]}.
 {dialyzer_opts, [{warnings, [no_unused,
                              no_improper_lists, no_fun_app, no_match,