From 977617f747c198660e4b16eb9acc00d9727d820c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 30 Jun 2019 18:09:50 +0200 Subject: Don't use "git -C" in tests: older git doesn't have it --- test/core_deps.mk | 4 ++-- 1 file 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\ -- cgit v1.2.3