Browse Source

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.
Loïc Hoguin 2 years ago
parent
commit
6711b6c4e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/core_deps.mk

+ 1 - 1
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 . && \