Remove touch command.

This commit is contained in:
Андрей Колченко 2014-10-20 11:47:55 +04:00
parent af014f61f3
commit 8fe9dc34cf

View file

@ -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);
}