Fix variable used for symlinking absolute paths, refs #8700
parent
0001635016
commit
e121de35a3
|
@ -129,7 +129,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
|
|||
if ($transportOptions['relative']) {
|
||||
$fileSystem->symlink($shortestPath, $path);
|
||||
} else {
|
||||
$fileSystem->symlink($absolutePath, $path);
|
||||
$fileSystem->symlink($realUrl, $path);
|
||||
}
|
||||
}
|
||||
} catch (IOException $e) {
|
||||
|
|
Loading…
Reference in New Issue