From a5d3d8448c8a724d87dfa4b08c890fd0e3d47944 Mon Sep 17 00:00:00 2001 From: jgmchan Date: Tue, 11 Jan 2022 15:07:52 +1100 Subject: [PATCH] Use HTTPS instead of `git://` protocol Github has removed support of the unauthenticated/unencrypted `git://` protocol in favour of encrypted protocols. See https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git --- rebar.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 3755daf..c31a076 100644 --- a/rebar.config +++ b/rebar.config @@ -1,5 +1,5 @@ {deps, [ - {jsx, ".*", {git, "git://github.com/talentdeficit/jsx.git", "main"}} + {jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", "main"}} ]}. {eunit_opts, [verbose]}. -{cover_enabled, true}. \ No newline at end of file +{cover_enabled, true}.