Skip to content

Commit

Permalink
rebar.config: Fix deps syntax
Browse files Browse the repository at this point in the history
* Fix git:// protocol not available anymore on github.
* Fix following warning from rebar3:
"WARNING: It is recommended to use {branch, Name}, {tag, Tag} or {ref, Ref},
otherwise updating the dep may not work as expected."
  • Loading branch information
pespin committed Oct 26, 2023
1 parent 90247a7 commit 92b36d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
{lager_extra_sinks, [netlink]}]}.

{deps, [
{lager, ".*", {git, "git://github.com/basho/lager", {tag, "3.2.1"}}},
{gen_socket, ".*", {git, "git://github.com/travelping/gen_socket", "master"}}
{lager, ".*", {git, "https://github.com/basho/lager", {tag, "3.2.1"}}},
{gen_socket, ".*", {git, "https://github.com/travelping/gen_socket", {branch, "master"}}}
]}.

0 comments on commit 92b36d3

Please sign in to comment.