From 6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 3 Apr 2023 10:20:50 +0200 Subject: Fix core-deps-fetch-git-submodule test Test broke when git did a security fix related to file:// that we are using for the submodule in this test. --- test/core_deps.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/core_deps.mk b/test/core_deps.mk index a398228..27c3b1f 100644 --- a/test/core_deps.mk +++ b/test/core_deps.mk @@ -562,7 +562,7 @@ core-deps-fetch-git-submodule: init $t mkdir $(APP)/deps $t cd $(APP) && \ git init -q && \ - git submodule -q add file://$(abspath $(APP)/my_dep) deps/my_dep && \ + git -c protocol.file.allow=always submodule -q add file://$(abspath $(APP)/my_dep) deps/my_dep && \ git config user.email "testsuite@erlang.mk" && \ git config user.name "test suite" && \ git add . && \ -- cgit v1.2.3