1
0
Fork 0

Merge branch '1.2'

pull/5688/merge
Jordi Boggiano 2016-09-23 16:37:54 +02:00
commit 3030dab90e
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,12 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
while ($url = array_shift($urls)) { while ($url = array_shift($urls)) {
try { try {
if (Filesystem::isLocalPath($url)) { if (Filesystem::isLocalPath($url)) {
# realpath() below will not understand
# url that starts with "file://"
$needle = 'file://';
if (0 === strpos($url, $needle)) {
$url = substr($url, strlen($needle));
}
$url = realpath($url); $url = realpath($url);
} }
$this->doDownload($package, $path, $url); $this->doDownload($package, $path, $url);