mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 07:50:28 +03:00
Fix small issue in import.py
This commit is contained in:
parent
9bde500765
commit
b63ce63017
1 changed files with 2 additions and 0 deletions
|
|
@ -139,11 +139,13 @@ def main():
|
||||||
website = ""
|
website = ""
|
||||||
elif url.startswith('https://github.com'):
|
elif url.startswith('https://github.com'):
|
||||||
projecttype = 'github'
|
projecttype = 'github'
|
||||||
|
repo = url
|
||||||
repotype = 'git'
|
repotype = 'git'
|
||||||
sourcecode = url
|
sourcecode = url
|
||||||
issuetracker = url + '/issues'
|
issuetracker = url + '/issues'
|
||||||
elif url.startswith('https://gitlab.com/'):
|
elif url.startswith('https://gitlab.com/'):
|
||||||
projecttype = 'gitlab'
|
projecttype = 'gitlab'
|
||||||
|
repo = url
|
||||||
repotype = 'git'
|
repotype = 'git'
|
||||||
sourcecode = url
|
sourcecode = url
|
||||||
issuetracker = url + '/issues'
|
issuetracker = url + '/issues'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue