mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00
Merge pull request #22 from bwrsandman/patch-2
[IMP] runbot: support repo names with `.git` suffix when performing github API calls
This commit is contained in:
commit
5509e7963b
@ -208,7 +208,7 @@ class runbot_repo(osv.osv):
|
||||
for repo in self.browse(cr, uid, ids, context=context):
|
||||
if not repo.token:
|
||||
raise Exception('Repository does not have a token to authenticate')
|
||||
match_object = re.search('([^/]+)/([^/]+)/([^/]+)', repo.base)
|
||||
match_object = re.search('([^/]+)/([^/]+)/([^/.]+(.git)?)', repo.base)
|
||||
if match_object:
|
||||
url = url.replace(':owner', match_object.group(2))
|
||||
url = url.replace(':repo', match_object.group(3))
|
||||
|
Loading…
Reference in New Issue
Block a user