Browse Source

[Nostromo] Tweaks

pull/1/head
Andrés Montañez 8 years ago
parent
commit
136fdd1379
  1. 4
      src/Mage/Task/BuiltIn/Deploy/TarGz/CopyTask.php

4
src/Mage/Task/BuiltIn/Deploy/TarGz/CopyTask.php

@ -58,9 +58,7 @@ class CopyTask extends AbstractTask
if ($process->isSuccessful()) { if ($process->isSuccessful()) {
$cmdDelete = sprintf('rm %s/%s', $targetDir, $tarGzRemote); $cmdDelete = sprintf('rm %s/%s', $targetDir, $tarGzRemote);
$process = $this->runtime->runRemoteCommand($cmdDelete, false); $process = $this->runtime->runRemoteCommand($cmdDelete, false);
if ($process->isSuccessful()) { return $process->isSuccessful();
return true;
}
} }
} }

Loading…
Cancel
Save