mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +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'
|
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…
Add table
Add a link
Reference in a new issue