mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-03-18 15:06:42 -04:00
import: use .git suffix only for repo-url
This commit is contained in:
@@ -97,10 +97,10 @@ def get_metadata_from_url(app, url):
|
||||
projecttype = 'gitlab'
|
||||
# git can be fussy with gitlab URLs unless they end in .git
|
||||
if url.endswith('.git'):
|
||||
repo = url
|
||||
else:
|
||||
repo = url + '.git'
|
||||
url = url[:-4]
|
||||
repo = url + '.git'
|
||||
repotype = 'git'
|
||||
app.WebSite = url
|
||||
app.SourceCode = url + '/tree/HEAD'
|
||||
app.IssueTracker = url + '/issues'
|
||||
elif url.startswith('https://bitbucket.org/'):
|
||||
|
||||
Reference in New Issue
Block a user