[Nostromo] Refactor Composer Update, organize task tests better

This commit is contained in:
Andrés Montañez
2017-02-11 01:48:26 -03:00
parent 5054fb45d0
commit d8f2359d12
12 changed files with 769 additions and 726 deletions
+2 -2
View File
@@ -33,10 +33,10 @@ class InstallTask extends AbstractTask
public function execute()
{
$options = $this->getOptions();
$command = sprintf('%s install %s', $options['path'], $options['flags']);
$cmd = sprintf('%s install %s', $options['path'], $options['flags']);
/** @var Process $process */
$process = $this->runtime->runCommand(trim($command));
$process = $this->runtime->runCommand(trim($cmd));
return $process->isSuccessful();
}