diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-10 03:45:48 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-10 03:45:48 +0200 |
commit | 193b079d278e3847fce304b88603bbce5025a3f4 (patch) | |
tree | 3b65efe86646ccd3a00973ad00946c86c70a33b8 /src/blogc-git-receiver | |
parent | 84dbde7d04a04434721ec9d2965af6d946713e5d (diff) | |
download | blogc-193b079d278e3847fce304b88603bbce5025a3f4.tar.gz blogc-193b079d278e3847fce304b88603bbce5025a3f4.tar.bz2 blogc-193b079d278e3847fce304b88603bbce5025a3f4.zip |
Revert "trying to fix tests on travis"
This reverts commit 84dbde7d04a04434721ec9d2965af6d946713e5d.
Diffstat (limited to 'src/blogc-git-receiver')
-rw-r--r-- | src/blogc-git-receiver/post-receive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blogc-git-receiver/post-receive.c b/src/blogc-git-receiver/post-receive.c index dc29fa3..79c51ac 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 -f config --get remote.mirror.pushurl &> /dev/null")) || - (0 == system("git config -f config --get remote.mirror.url &> /dev/null"))) + if ((0 == system("git config --local remote.mirror.pushurl &> /dev/null")) || + (0 == system("git config --local remote.mirror.url &> /dev/null"))) { mirror = bc_strdup("mirror"); goto push; |