Fix local repo detection
parent
ca8845f44f
commit
d03fb4804c
|
@ -200,7 +200,7 @@ class GitDriver extends VcsDriver implements VcsDriverInterface
|
||||||
if (static::isLocalUrl($url)) {
|
if (static::isLocalUrl($url)) {
|
||||||
$process = new ProcessExecutor();
|
$process = new ProcessExecutor();
|
||||||
// check whether there is a git repo in that path
|
// check whether there is a git repo in that path
|
||||||
if ($process->execute(sprintf('cd %s && git show', escapeshellarg($url)), $output) === 0) {
|
if ($process->execute(sprintf('cd %s && git tag', escapeshellarg($url)), $output) === 0) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue