|
@@ -85,7 +85,7 @@ class TagModulesCommand extends Command
|
|
|
|
|
|
$output->writeln('Commit de los composer');
|
|
|
$command = $cd_path . "; git commit -am 'Composer para la version " . $version . " y el tag " . $tag . "'";
|
|
|
- $output->writeln('\t' . $command);
|
|
|
+ $output->writeln("\t" . $command);
|
|
|
shell_exec($command);
|
|
|
|
|
|
// cambio a la rama de la version y agrego los archivos modificados
|
|
@@ -97,7 +97,7 @@ class TagModulesCommand extends Command
|
|
|
|
|
|
$output->writeln('Push de la rama ' . $version);
|
|
|
$command = $cd_path . "; git push " . $optionRemoteGit . " " . $version;
|
|
|
- $output->writeln('\t' . $command);
|
|
|
+ $output->writeln("\t" . $command);
|
|
|
shell_exec($command);
|
|
|
// estoy creando un tag
|
|
|
$tags = $git->tag();
|
|
@@ -115,7 +115,7 @@ class TagModulesCommand extends Command
|
|
|
// ejecuto el comando git
|
|
|
$output->writeln('Push de la rama.');
|
|
|
$command = $cd_path . "; git push " . $optionRemoteGit . " --tags ";
|
|
|
- $output->writeln('\t' . $command);
|
|
|
+ $output->writeln("\t" . $command);
|
|
|
// tengo que hacer el --tags para que pase todos los tags
|
|
|
shell_exec($command);
|
|
|
} catch (GitException $e) {
|