mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 08:51:06 +03:00
Importer: Fix duplicated urls
This commit is contained in:
parent
66487272cd
commit
6353dd1a09
1 changed files with 2 additions and 1 deletions
|
@ -142,11 +142,12 @@ def main():
|
|||
repotype = 'git'
|
||||
sourcecode = url
|
||||
issuetracker = url + '/issues'
|
||||
website = ""
|
||||
elif url.startswith('https://gitlab.com/'):
|
||||
projecttype = 'gitlab'
|
||||
repo = url
|
||||
repotype = 'git'
|
||||
sourcecode = url
|
||||
sourcecode = url + '/tree/HEAD'
|
||||
issuetracker = url + '/issues'
|
||||
elif url.startswith('https://gitorious.org/'):
|
||||
projecttype = 'gitorious'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue