diff options
author | Loïc Hoguin <[email protected]> | 2023-04-03 10:20:50 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-04-03 10:20:50 +0200 |
commit | 6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b (patch) | |
tree | 988b603ac4c45524ef82a33adeb1080ee3d55577 | |
parent | 063a24a83278f3e89c26daa42b811a9e30581eee (diff) | |
download | erlang.mk-6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b.tar.gz erlang.mk-6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b.tar.bz2 erlang.mk-6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b.zip |
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.
-rw-r--r-- | test/core_deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 "[email protected]" && \ git config user.name "test suite" && \ git add . && \ |