|
@@ -78,6 +78,8 @@ class TagVendorsCommand extends Command
|
|
|
// si no existe el branch y estoy creando un branch nuevo
|
|
|
$git->branch->create($version);
|
|
|
$cmd .= "$version ";
|
|
|
+var_dump('creando branch----------------------');
|
|
|
+
|
|
|
}
|
|
|
$git->checkout($version);
|
|
|
if (!$optionBranch) {
|
|
@@ -96,8 +98,11 @@ class TagVendorsCommand extends Command
|
|
|
$cmd .= " --tags";
|
|
|
}
|
|
|
// ejecuto el comando git
|
|
|
- shell_exec($cmd);
|
|
|
- sleep(5);
|
|
|
+ if ($sec == 'webservice') {
|
|
|
+ var_dump($cmd);
|
|
|
+ //shell_exec($cmd);
|
|
|
+ }
|
|
|
+ sleep(5);
|
|
|
} catch (GitException $e) {
|
|
|
$output->writeln($e->getTraceAsString());
|
|
|
$output->writeln($sec . ": " . $e->getMessage());
|