chiark / gitweb /
import: use .git suffix only for repo-url
[fdroidserver.git] / fdroidserver / import.py
index e1d69c3c3eb91f63bcbf65469775d74ff8404735..14f2f79d4ca2d5aabc4e4d4c55972953b5634b2e 100644 (file)
@@ -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/'):