Also avoid matching .git suffix in bitbucket URLs, refs #9590

main
Jordi Boggiano 4 years ago
parent a20ee1a448
commit 147d884996
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -122,7 +122,7 @@ class Git
$errorMsg = $this->process->getErrorOutput();
}
} elseif (preg_match('{^https://(bitbucket\.org)/(.*)(?:\.git)?$}U', $url, $match)) { //bitbucket oauth
} elseif (preg_match('{^https://(bitbucket\.org)/(.*?)(?:\.git)?$}U', $url, $match)) { //bitbucket oauth
$bitbucketUtil = new Bitbucket($this->io, $this->config, $this->process);
if (!$this->io->hasAuthentication($match[1])) {

Loading…
Cancel
Save