1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Importer: Fix duplicated urls

This commit is contained in:
Boris Kraut 2015-03-22 03:24:43 +01:00
parent 66487272cd
commit 6353dd1a09

View File

@ -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'