diff options
-rw-r--r-- | http-push.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/http-push.c b/http-push.c index 55d0c944a..eef767453 100644 --- a/http-push.c +++ b/http-push.c @@ -2212,6 +2212,10 @@ int main(int argc, char **argv) break; } +#ifndef USE_CURL_MULTI + die("git-push is not available for http/https repository when not compiled with USE_CURL_MULTI"); +#endif + if (!remote->url) usage(http_push_usage); |