1
0
Fork 0

Fix variable used for symlinking absolute paths, refs #8700

pull/8767/head
Jordi Boggiano 2020-04-09 17:01:33 +02:00
parent 0001635016
commit e121de35a3
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
if ($transportOptions['relative']) { if ($transportOptions['relative']) {
$fileSystem->symlink($shortestPath, $path); $fileSystem->symlink($shortestPath, $path);
} else { } else {
$fileSystem->symlink($absolutePath, $path); $fileSystem->symlink($realUrl, $path);
} }
} }
} catch (IOException $e) { } catch (IOException $e) {