Преглед изворни кода

Arreglo TagVendorsCommand, se cambio el lugar de asignacion

Luciano Andrade пре 7 година
родитељ
комит
fc045718c2
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      tools/src/Command/TagVendorsCommand.php

+ 1 - 2
tools/src/Command/TagVendorsCommand.php

@@ -48,9 +48,8 @@ class TagVendorsCommand extends Command
 
             $content = parse_ini_file($realpath, true);
             foreach ($content as $sec => $conf) {
-                $output->writeln(json_encode($content));
-                $output->writeln($sec . " - " . $content[$sec]["branch"] . " - " . $version . " - " . $tag . " - " . $content[$sec]["repo"]);
                 $content[$sec]["branch"] = $version;
+                $output->writeln($sec . " - " . $content[$sec]["branch"] . " - " . $version . " - " . $tag . " - " . $content[$sec]["repo"]);
                 try {
                     $git = new Git();
                     $git_path = $dirname . '/' . $sec;