From 84dbde7d04a04434721ec9d2965af6d946713e5d Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Mon, 10 Oct 2016 03:08:13 +0200 Subject: trying to fix tests on travis --- src/blogc-git-receiver/post-receive.c | 4 ++-- tests/blogc-git-receiver/check_post_receive.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/blogc-git-receiver/post-receive.c b/src/blogc-git-receiver/post-receive.c index 79c51ac..dc29fa3 100644 --- a/src/blogc-git-receiver/post-receive.c +++ b/src/blogc-git-receiver/post-receive.c @@ -52,8 +52,8 @@ bgr_post_receive_hook(int argc, char *argv[]) // the 'mirror' remote, just push to it. // this will be removed at some point, but will be kept for compatibility // with old setups. - if ((0 == system("git config --local remote.mirror.pushurl &> /dev/null")) || - (0 == system("git config --local remote.mirror.url &> /dev/null"))) + if ((0 == system("git config -f config --get remote.mirror.pushurl &> /dev/null")) || + (0 == system("git config -f config --get remote.mirror.url &> /dev/null"))) { mirror = bc_strdup("mirror"); goto push; diff --git a/tests/blogc-git-receiver/check_post_receive.sh b/tests/blogc-git-receiver/check_post_receive.sh index 954787b..ca1d428 100755 --- a/tests/blogc-git-receiver/check_post_receive.sh +++ b/tests/blogc-git-receiver/check_post_receive.sh @@ -44,18 +44,18 @@ git init --bare "${TEMP}/repos/bar.git" &> /dev/null HOME="${TEMP}" ${TESTS_ENVIRONMENT} ./hooks/post-receive 2>&1 | tee "${TEMP}/output.txt" grep "warning: repository mirroring disabled" "${TEMP}/output.txt" &> /dev/null -git config --local remote.mirror.pushurl "${TEMP}/repos/bar.git" +git config remote.mirror.pushurl "${TEMP}/repos/bar.git" HOME="${TEMP}" ${TESTS_ENVIRONMENT} ./hooks/post-receive 2>&1 | tee "${TEMP}/output.txt" grep "[new branch] *master" "${TEMP}/output.txt" &> /dev/null -git config --local --unset remote.mirror.pushurl +git config --unset remote.mirror.pushurl rm -rf "${TEMP}/repos/bar.git" git init --bare "${TEMP}/repos/bar.git" &> /dev/null -git config --local remote.mirror.url "${TEMP}/repos/bar.git" +git config remote.mirror.url "${TEMP}/repos/bar.git" HOME="${TEMP}" ${TESTS_ENVIRONMENT} ./hooks/post-receive 2>&1 | tee "${TEMP}/output.txt" grep "[new branch] *master" "${TEMP}/output.txt" &> /dev/null -git config --local --unset remote.mirror.url +git config --unset remote.mirror.url rm -rf "${TEMP}/repos/bar.git" cat > "${TEMP}/blogc-git-receiver.ini" <