Fix scheme in public gitlab URLs, refs #6683
parent
b52fd60873
commit
94a1f16c96
|
@ -311,7 +311,7 @@ class GitLabDriver extends VcsDriver
|
||||||
if (isset($this->project['visibility'])) {
|
if (isset($this->project['visibility'])) {
|
||||||
$this->isPrivate = $this->project['visibility'] !== 'public';
|
$this->isPrivate = $this->project['visibility'] !== 'public';
|
||||||
} else {
|
} else {
|
||||||
// client is not authendicated, therefore repository has to be public
|
// client is not authendicated, therefore repository has to be public
|
||||||
$this->isPrivate = false;
|
$this->isPrivate = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -351,7 +351,7 @@ class GitLabDriver extends VcsDriver
|
||||||
|
|
||||||
protected function generatePublicUrl()
|
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)
|
protected function setupGitDriver($url)
|
||||||
|
|
Loading…
Reference in New Issue