|
@@ -75,7 +75,11 @@ class ComposerRequireCommand extends Command
|
|
|
$output->writeln('Composer update');
|
|
|
$command = 'docker-compose exec ' . $sec . ' bin/composer-update.sh';
|
|
|
$output->writeln("\t" . $command);
|
|
|
- shell_exec($command);
|
|
|
+ $resp = shell_exec($command);
|
|
|
+ if ($resp) {
|
|
|
+ $output->writeln("\tSalida comando.");
|
|
|
+ $output->writeln("\t\t" . $resp);
|
|
|
+ }
|
|
|
}
|
|
|
} catch (Throwable $t) {
|
|
|
$output->writeln('Se produjo un error. Reestableciendo datos.');
|