|
@@ -204,12 +204,12 @@ class Filesystem
|
|
|
foreach ($iterator as $file) {
|
|
|
$target = $targetDir.'/'.str_replace($originDir.DIRECTORY_SEPARATOR, '', $file->getPathname());
|
|
|
|
|
|
- if (is_dir($file)) {
|
|
|
+ if (is_link($file)) {
|
|
|
+ $this->symlink($file, $target);
|
|
|
+ } else if (is_dir($file)) {
|
|
|
$this->mkdir($target);
|
|
|
} else if (is_file($file) || ($copyOnWindows && is_link($file))) {
|
|
|
$this->copy($file, $target, isset($options['override']) ? $options['override'] : false);
|
|
|
- } else if (is_link($file)) {
|
|
|
- $this->symlink($file, $target);
|
|
|
} else {
|
|
|
throw new \RuntimeException(sprintf('Unable to guess "%s" file type.', $file));
|
|
|
}
|