In copy.rake, L65 we erroneously delete remote_tmp_dir when we should only delete remote_archive_path (as stated in the info output).
info I18n.t('file.remove', path: remote_archive_path, scope: :dkdeploy)
execute :rm, '-rf', remote_tmp_dir
Fixing this issue improves parallel deployments.
In
copy.rake, L65 we erroneously deleteremote_tmp_dirwhen we should only deleteremote_archive_path(as stated in the info output).Fixing this issue improves parallel deployments.