commit
bac9d6d2e7
|
@ -181,13 +181,14 @@ class GitDriver extends VcsDriver
|
||||||
*/
|
*/
|
||||||
public static function supports(IOInterface $io, $url, $deep = false)
|
public static function supports(IOInterface $io, $url, $deep = false)
|
||||||
{
|
{
|
||||||
if (preg_match('#(^file://|^git://|\.git$|git@|//git\.|//github.com/)#i', $url)) {
|
if (preg_match('#(^git://|\.git$|git@|//git\.|//github.com/)#i', $url)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// local filesystem
|
// local filesystem
|
||||||
if (static::isLocalUrl($url)) {
|
if (static::isLocalUrl($url)) {
|
||||||
$process = new ProcessExecutor();
|
$process = new ProcessExecutor();
|
||||||
|
$url = str_replace('file://', '', $url);
|
||||||
// check whether there is a git repo in that path
|
// check whether there is a git repo in that path
|
||||||
if ($process->execute('git tag', $output, $url) === 0) {
|
if ($process->execute('git tag', $output, $url) === 0) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue