Use shortest relative paths for symlinks
parent
7267b2ed90
commit
f6d5d65bcd
|
@ -48,7 +48,8 @@ class PathDownloader extends FileDownloader
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$fileSystem->symlink($realUrl, $path);
|
$shortestPath = $this->filesystem->findShortestPath($path, $realUrl);
|
||||||
|
$fileSystem->symlink($shortestPath, $path);
|
||||||
$this->io->writeError(sprintf(' Symlinked from %s', $url));
|
$this->io->writeError(sprintf(' Symlinked from %s', $url));
|
||||||
} catch (IOException $e) {
|
} catch (IOException $e) {
|
||||||
$fileSystem->mirror($realUrl, $path);
|
$fileSystem->mirror($realUrl, $path);
|
||||||
|
|
Loading…
Reference in New Issue