1
0
Fork 0

Don't hardcode the URL to an https one either

pull/2773/head
Nils Adermann 2014-02-25 15:57:35 +01:00
parent edfaf727e5
commit b808ff5e28
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class GitHubDriver extends VcsDriver
$this->cache = new Cache($this->io, $this->config->get('cache-repo-dir').'/'.$this->originUrl.'/'.$this->owner.'/'.$this->repository);
if (isset($this->repoConfig['no-api']) && $this->repoConfig['no-api']) {
$this->setupGitDriver($this->getUrl());
$this->setupGitDriver($this->url);
return;
}