1
0
Fork 0

Fixing broken unit test.

pull/2375/head
Gennady Feldman 2013-10-28 13:08:18 -04:00
parent e78499d28d
commit a4d7fc138a
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ class GitDownloader extends VcsDownloader
$protocols = $this->config->get('github-protocols');
$pushUrl = 'git@'.$match[1].':'.$match[2].'/'.$match[3].'.git';
if ($protocols[0] !== 'git') {
$pushUrl = 'https://github.com/'.$match[1].'/'.$match[2].'.git';
$pushUrl = 'https://' . $match[1] . '/'.$match[2].'/'.$match[3].'.git';
}
$cmd = sprintf('git remote set-url --push origin %s', escapeshellarg($pushUrl));
$this->process->execute($cmd, $ignoredOutput, $path);