diff options
author | Stefan Auditor <stefan.auditor@erdfisch.de> | 2015-08-16 14:18:42 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-08-16 21:37:51 +0200 |
commit | ff659fa05c3da5acde9c22c406daab807c22db51 (patch) | |
tree | b6ef95de88a77e0b42f927d19435f79251d718a1 | |
parent | 7eaab632162e6691ce30f21080650c1239a90d71 (diff) | |
download | aurweb-ff659fa05c3da5acde9c22c406daab807c22db51.tar.xz |
Remove trailing slash from git urls
Circumvents the temporary regression in git that clones a repository
as foo-git.git instead of foo-git and matches the format used by
other commonly used git hosting providers.
Fixes FS#45834.
Signed-off-by: Stefan Auditor <stefan.auditor@erdfisch.de>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | conf/config.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/config.proto b/conf/config.proto index 2c798b7..de9acdf 100644 --- a/conf/config.proto +++ b/conf/config.proto @@ -18,8 +18,8 @@ persistent_cookie_timeout = 2592000 max_filesize_uncompressed = 8388608 disable_http_login = 1 aur_location = https://aur.archlinux.org -git_clone_uri_anon = https://aur.archlinux.org/%s.git/ -git_clone_uri_priv = ssh+git://aur@aur.archlinux.org/%s.git/ +git_clone_uri_anon = https://aur.archlinux.org/%s.git +git_clone_uri_priv = ssh+git://aur@aur.archlinux.org/%s.git max_rpc_results = 5000 aur_request_ml = aur-requests@archlinux.org request_idle_time = 1209600 |