Merge pull request #4568 from annesosensio/patch-1
Made wildcard expansion consistent with bashpull/4571/head
commit
87081f3be8
|
@ -691,8 +691,8 @@ FOOTER;
|
|||
$path = preg_quote(trim(strtr($path, '\\', '/'), '/'));
|
||||
|
||||
// add support for wildcards * and **
|
||||
$path = str_replace('\\*\\*', '.*?', $path);
|
||||
$path = str_replace('\\*', '[^/]*?', $path);
|
||||
$path = str_replace('\\*\\*', '.+?', $path);
|
||||
$path = str_replace('\\*', '[^/]+?', $path);
|
||||
|
||||
$autoloads[] = empty($installPath) ? preg_quote(strtr(getcwd(), '\\', '/')) . '/' . $path : preg_quote($installPath) . '/' . $path;
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue