From e428e5843a23e645693c9d86c34e0ad93aef717e Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 26 Oct 2023 17:06:42 +0200 Subject: [PATCH] rebar.config: Fix github git proto no longer supported git:// protocol is no longer supported by github, switch to https: https://github.blog/2021-09-01-improving-git-protocol-security-github/ --- rebar.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rebar.config b/rebar.config index addfda6..e206747 100644 --- a/rebar.config +++ b/rebar.config @@ -21,11 +21,11 @@ ]}, {pcap, [{deps, - [{flower, {git, "git://github.com/travelping/flower.git", + [{flower, {git, "https://github.com/travelping/flower.git", {branch, "master"}}}, - {gen_socket, {git, "git://github.com/travelping/gen_socket.git", + {gen_socket, {git, "https://github.com/travelping/gen_socket.git", {branch, "master"}}}, - {pcapng, {git, "git://github.com/travelping/pcapng.git", + {pcapng, {git, "https://github.com/travelping/pcapng.git", {branch, "master"}}}, {proper, {git, "https://github.com/proper-testing/proper.git", {branch, "master"}}}