mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Support https://code.google.com in fdroid import
This commit is contained in:
parent
946e79f2ce
commit
d104f2e1fb
1 changed files with 2 additions and 1 deletions
|
|
@ -164,7 +164,8 @@ def main():
|
||||||
if not repotype:
|
if not repotype:
|
||||||
logging.info("Unable to determine vcs type. " + repo)
|
logging.info("Unable to determine vcs type. " + repo)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
elif url.startswith('http://code.google.com/p/'):
|
elif (url.startswith('http://code.google.com/p/') or
|
||||||
|
url.startswith('https://code.google.com/p/')):
|
||||||
if not url.endswith('/'):
|
if not url.endswith('/'):
|
||||||
url += '/'
|
url += '/'
|
||||||
projecttype = 'googlecode'
|
projecttype = 'googlecode'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue