mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Importer: Fix duplicated urls
This commit is contained in:
parent
66487272cd
commit
6353dd1a09
@ -142,11 +142,12 @@ def main():
|
|||||||
repotype = 'git'
|
repotype = 'git'
|
||||||
sourcecode = url
|
sourcecode = url
|
||||||
issuetracker = url + '/issues'
|
issuetracker = url + '/issues'
|
||||||
|
website = ""
|
||||||
elif url.startswith('https://gitlab.com/'):
|
elif url.startswith('https://gitlab.com/'):
|
||||||
projecttype = 'gitlab'
|
projecttype = 'gitlab'
|
||||||
repo = url
|
repo = url
|
||||||
repotype = 'git'
|
repotype = 'git'
|
||||||
sourcecode = url
|
sourcecode = url + '/tree/HEAD'
|
||||||
issuetracker = url + '/issues'
|
issuetracker = url + '/issues'
|
||||||
elif url.startswith('https://gitorious.org/'):
|
elif url.startswith('https://gitorious.org/'):
|
||||||
projecttype = 'gitorious'
|
projecttype = 'gitorious'
|
||||||
|
Loading…
Reference in New Issue
Block a user