mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
index: fix git-mirror size check for GitLab Pages
The test case had the wrong folder setup, this was confirmed on a production repo setup.
This commit is contained in:
parent
83335437b9
commit
f24613b701
2 changed files with 5 additions and 3 deletions
|
|
@ -1438,7 +1438,8 @@ def get_mirror_service_urls(url):
|
|||
segments.extend([branch, folder])
|
||||
urls.append('/'.join(segments))
|
||||
elif hostname == "gitlab.com":
|
||||
if common.get_dir_size(folder) <= common.GITLAB_COM_PAGES_MAX_SIZE:
|
||||
git_mirror_path = os.path.join('git-mirror', folder)
|
||||
if common.get_dir_size(git_mirror_path) <= common.GITLAB_COM_PAGES_MAX_SIZE:
|
||||
# Gitlab-like Pages segments "https://user.gitlab.io/repo/folder"
|
||||
gitlab_pages = ["https:", "", user + ".gitlab.io", repo, folder]
|
||||
urls.append('/'.join(gitlab_pages))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue