Browse Source

[Nostromo] Apply PHP Mess Detector recommendations

pull/1/head
Andrés Montañez 8 years ago
parent
commit
c2b83428f0
  1. 5
      src/Command/BuiltIn/DeployCommand.php
  2. 3
      src/Runtime/Runtime.php

5
src/Command/BuiltIn/DeployCommand.php

@ -144,7 +144,9 @@ class DeployCommand extends AbstractCommand
if (count($hosts) == 0) { if (count($hosts) == 0) {
$output->writeln(sprintf(' No hosts defined, skipping %s tasks', $this->getStageName())); $output->writeln(sprintf(' No hosts defined, skipping %s tasks', $this->getStageName()));
$output->writeln(''); $output->writeln('');
} else { return true;
}
foreach ($hosts as $host) { foreach ($hosts as $host) {
$this->runtime->setWorkingHost($host); $this->runtime->setWorkingHost($host);
if (!$this->runTasks($output, $tasks)) { if (!$this->runTasks($output, $tasks)) {
@ -154,7 +156,6 @@ class DeployCommand extends AbstractCommand
$this->runtime->setWorkingHost(null); $this->runtime->setWorkingHost(null);
} }
} }
}
/** /**
* Runs all the tasks * Runs all the tasks

3
src/Runtime/Runtime.php

@ -414,10 +414,9 @@ class Runtime
$host = $this->getWorkingHost(); $host = $this->getWorkingHost();
$sshConfig = $this->getSSHConfig(); $sshConfig = $this->getSSHConfig();
$cmdDelegate = $cmd;
if ($sudo === true) { if ($sudo === true) {
$cmdDelegate = sprintf('sudo %s', $cmd); $cmdDelegate = sprintf('sudo %s', $cmd);
} else {
$cmdDelegate = $cmd;
} }
if ($jail) { if ($jail) {

Loading…
Cancel
Save