Simplify check
parent
f152fe723d
commit
fa8cb14073
|
@ -172,8 +172,8 @@ class GitDriver extends VcsDriver implements VcsDriverInterface
|
||||||
// local filesystem
|
// local filesystem
|
||||||
if (preg_match('{^(file://|/|[a-z]:[\\\\/])}', $url)) {
|
if (preg_match('{^(file://|/|[a-z]:[\\\\/])}', $url)) {
|
||||||
$process = new ProcessExecutor();
|
$process = new ProcessExecutor();
|
||||||
$process->execute(sprintf('cd %s && git log -1 --format=%%at', escapeshellarg($url)), $output);
|
// check whether there is a git repo in that path
|
||||||
if (is_numeric(trim($output))) {
|
if ($process->execute(sprintf('cd %s && git show', escapeshellarg($url)), $output) === 0) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue