diff options
author | Loïc Hoguin <[email protected]> | 2019-06-30 18:09:50 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2019-06-30 18:09:50 +0200 |
commit | 977617f747c198660e4b16eb9acc00d9727d820c (patch) | |
tree | 9abe278cace4eeffb648c5b661c1019d9cab352e /test/core_deps.mk | |
parent | 57876f7b1089834d7f5a9b444c8609a1ae6b0336 (diff) | |
download | erlang.mk-977617f747c198660e4b16eb9acc00d9727d820c.tar.gz erlang.mk-977617f747c198660e4b16eb9acc00d9727d820c.tar.bz2 erlang.mk-977617f747c198660e4b16eb9acc00d9727d820c.zip |
Don't use "git -C" in tests: older git doesn't have it
Diffstat (limited to 'test/core_deps.mk')
-rw-r--r-- | test/core_deps.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk index b96af8d..c4e2ad0 100644 --- a/test/core_deps.mk +++ b/test/core_deps.mk @@ -919,8 +919,8 @@ LOCAL_DEPS = my_dep_app ssl\ ' $(APP)_dep/Makefile $t echo 'unexport APPS_DIR' >> $(APP)_dep/Makefile $t rm $(APP)_dep/Makefile.bak - $t git -C $(APP)_dep add . - $t git -C $(APP)_dep commit -q --no-gpg-sign -m "Add application" + $t cd $(APP)_dep && git add . + $t cd $(APP)_dep && git commit -q --no-gpg-sign -m "Add application" $i "Add $(APP)-dep as a dependency" $t sed -i.bak '2i\ |