completion: document tilde expansion failure in tests
[gitweb.git] / remote-curl.c
index 4fea94f138a54191e53f50403fdc78813defe7c6..60eda6308197ad3d0b5957b9ae34e2dc15dfe5cc 100644 (file)
@@ -210,15 +210,13 @@ static struct discovery* discover_refs(const char *service, int for_push)
                break;
        case HTTP_MISSING_TARGET:
                show_http_message(&type, &buffer);
-               die("%s not found: did you run git update-server-info on the"
-                   " server?", refs_url);
+               die("repository '%s' not found", url);
        case HTTP_NOAUTH:
                show_http_message(&type, &buffer);
-               die("Authentication failed");
+               die("Authentication failed for '%s'", url);
        default:
                show_http_message(&type, &buffer);
-               http_error(refs_url, http_ret);
-               die("HTTP request failed");
+               die("unable to access '%s': %s", url, curl_errorstr);
        }
 
        last= xcalloc(1, sizeof(*last_discovery));