mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +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 = ""
|
||||
elif url.startswith('https://github.com'):
|
||||
projecttype = 'github'
|
||||
repo = url
|
||||
repotype = 'git'
|
||||
sourcecode = url
|
||||
issuetracker = url + '/issues'
|
||||
elif url.startswith('https://gitlab.com/'):
|
||||
projecttype = 'gitlab'
|
||||
repo = url
|
||||
repotype = 'git'
|
||||
sourcecode = url
|
||||
issuetracker = url + '/issues'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue