Change elseif to if.
parent
db1e4b7574
commit
1f70148884
|
@ -71,7 +71,9 @@ class GitDriver extends VcsDriver
|
||||||
|
|
||||||
if (0 !== $this->process->execute('git --version', $ignoredOutput)) {
|
if (0 !== $this->process->execute('git --version', $ignoredOutput)) {
|
||||||
throw new \RuntimeException('Failed to clone '.$this->url.', git was not found, check that it is installed and in your PATH env.' . "\n\n" . $this->process->getErrorOutput());
|
throw new \RuntimeException('Failed to clone '.$this->url.', git was not found, check that it is installed and in your PATH env.' . "\n\n" . $this->process->getErrorOutput());
|
||||||
} elseif (
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
$this->io->isInteractive() &&
|
$this->io->isInteractive() &&
|
||||||
preg_match('{(https?://)([^/]+)(.*)$}i', $this->url, $match) &&
|
preg_match('{(https?://)([^/]+)(.*)$}i', $this->url, $match) &&
|
||||||
strpos($output, 'fatal: Authentication failed') !== false
|
strpos($output, 'fatal: Authentication failed') !== false
|
||||||
|
|
Loading…
Reference in New Issue