Fix scheme in public gitlab URLs, refs #6683
parent
b52fd60873
commit
94a1f16c96
|
@ -351,7 +351,7 @@ class GitLabDriver extends VcsDriver
|
|||
|
||||
protected function generatePublicUrl()
|
||||
{
|
||||
return 'https://' . $this->originUrl . '/'.$this->namespace.'/'.$this->repository.'.git';
|
||||
return $this->scheme . '://' . $this->originUrl . '/'.$this->namespace.'/'.$this->repository.'.git';
|
||||
}
|
||||
|
||||
protected function setupGitDriver($url)
|
||||
|
|
Loading…
Reference in New Issue