diff --git a/Mage/Task/BuiltIn/Filesystem/LinkSharedFilesTask.php b/Mage/Task/BuiltIn/Filesystem/LinkSharedFilesTask.php index 91cd852..98b5698 100644 --- a/Mage/Task/BuiltIn/Filesystem/LinkSharedFilesTask.php +++ b/Mage/Task/BuiltIn/Filesystem/LinkSharedFilesTask.php @@ -53,8 +53,6 @@ class LinkSharedFilesTask extends AbstractTask implements IsReleaseAware $command = 'mkdir -p ' . escapeshellarg(dirname($sharedFolderName . '/' . $file)); $this->runCommandRemote($command); $target = escapeshellarg($sharedFolderName . '/' . $file); - $command = 'touch ' . $target; - $this->runCommandRemote($command); $command = 'ln -s ' . $target . ' ' . escapeshellarg($currentCopy . '/' . $file); $this->runCommandRemote($command); }