Skip to content

Commit

Permalink
Merge pull request #18 from osbre/fix/git-protocol
Browse files Browse the repository at this point in the history
Remove deprecated `git://` protocol usage
  • Loading branch information
5HT authored Jul 23, 2024
2 parents 945a6d7 + 8b3ab69 commit 01f8d6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Usage

On Mac/Linux/Windows just include into your rebar.config:

{active, ".*", {git, "git://github.com/synrc/active", {tag,"1.9"}}}
{active, ".*", {git, "https://github.com/synrc/active.git", {tag,"1.9"}}}

NOTE: on Linux please install inotify-tools.

Expand Down
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{erl_opts,[nowarn_deprecated_function]}.
{deps, [{mad, ".*", {git, "git://github.com/synrc/mad", {tag,"master"}}},
{fs, ".*", {git, "git://github.com/synrc/fs", {tag,"master"}}}]}.
{deps, [{mad, ".*", {git, "https://github.com/synrc/mad.git", {tag,"master"}}},
{fs, ".*", {git, "https://github.com/synrc/fs.git", {tag,"master"}}}]}.

0 comments on commit 01f8d6c

Please sign in to comment.