diff --git a/fdroidserver/import.py b/fdroidserver/import.py index 27b0c90b..c8b3bbdb 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -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'