Преглед на файлове

Revert "Merge remote-tracking branch 'github-ercanozkaya/master'"

This reverts commit b5eededbe9bfa62f9f74fdb62f685bc47af9a288, reversing
changes made to 799a478f2ab1297ba05c6651bf8da6d9fb988683.

This change was wrong as the GitDriver was then telling it supports
all local URIs even when they are not git repositories.
Christophe Coevoet преди 13 години
родител
ревизия
4404c5f287
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/Composer/Repository/Vcs/GitDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/GitDriver.php

@@ -181,7 +181,7 @@ class GitDriver extends VcsDriver
      */
     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;
         }